blob: 6c6e59576770d60df637b79ea6ec9e2173baf990 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="1" data-provider-thread-count="1">
<parameter name="makeDistribution" value="false"/>
<test name="uiSanity">
<classes>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Vf">
<methods>
<include name="changeInstanceNameInVfTest"/>
</methods>
</class>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Service">
<methods>
<include name="updateService"/>
</methods>
</class>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.OnboardingFlowsUi">
<methods>
<include name="onapOnboardVNFflow"/>
<include name="onboardCNFTest"/>
<include name="onboardCNFTestShouldFailForInvalidHelmPackage"/>
<include name="onapOnboardVSPValidationsSanityFlow"/>
<include name="onboardPNFSoftwareInformationFlow"/>
</methods>
</class>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.GAB"/>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.EtsiNetworkServiceUiTests"/>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.EtsiOnboardVnfCnfUiTests">
<methods>
<include name="createVlm"/>
<include name="onboardEtsiVnfCnfFlow"/>
</methods>
</class>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ImportVfcUiTest"/>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ServiceTemplateDesignUiTests">
<methods>
<include name="importAndCertifyVfc"/>
<include name="createBaseService"/>
<include name="addRelationshipTemplate"/>
<include name="addComponentProperty"/>
<include name="addOutputsToVF_test"/>
<include name="declareInputFromProperties"/>
<include name="createSubstitutionFilter"/>
<include name="createDirectiveNodeFilterTest"/>
<include name="updateInterfaceOperation"/>
<include name="createMetadataForServiceProperty"/>
<include name="addComponentInput"/>
</methods>
</class>
</classes>
</test>
</suite>
|