blob: 2e171e970f07efdcc98fabe0c1b87bd09be58c8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<suite name="helmValidatorTests" configfailurepolicy="continue" parallel="methods" thread-count="1" data-provider-thread-count="1">
<parameter name="makeDistribution" value="false"/>
<test name="helmValidatorTests">
<classes>
<class name="org.onap.sdc.frontend.ci.tests.execute.sanity.OnboardingFlowsUi">
<methods>
<include name="onapOnboardVSPWithHelmValidationSuccessfulWithoutErrorsAndWarnings"/>
<include name="onapOnboardVSPWithHelmValidationSuccessfulWithWarnings"/>
<include name="onapOnboardVSPWithHelmValidationUnsuccessfulWithErrors"/>
</methods>
</class>
</classes>
</test>
</suite>
|