diff options
author | andre.schmid <andre.schmid@est.tech> | 2019-11-15 10:07:12 +0000 |
---|---|---|
committer | andre.schmid <andre.schmid@est.tech> | 2019-11-21 09:08:34 +0000 |
commit | 8b0c94492906d7db528af73834c0d2299b8eb382 (patch) | |
tree | 08d271940ff9507aadb758eb8740a49ac6aa91df /ui-ci/src/main/resources/ci/testSuites/onapUiSanity.xml | |
parent | fa1db43d43abd43a8f18bb26d0054de41fdb2a22 (diff) |
Fix to stabilize sanity ui test suite
Fix the selection of the Resource Composition screen.
Fix the search for a Resource in the home screen.
Refactor some related classes, mainly removing exceptions not thrown,
correcting typos, removing unused/commented code, fixing SonarQube
issues.
Improve the logs and report logs.
Change-Id: I89b5a0d89652367520cededa6744831492bbbaba
Issue-ID: SDC-2648
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'ui-ci/src/main/resources/ci/testSuites/onapUiSanity.xml')
-rw-r--r-- | ui-ci/src/main/resources/ci/testSuites/onapUiSanity.xml | 43 |
1 files changed, 21 insertions, 22 deletions
diff --git a/ui-ci/src/main/resources/ci/testSuites/onapUiSanity.xml b/ui-ci/src/main/resources/ci/testSuites/onapUiSanity.xml index 3945088218..245524d0e8 100644 --- a/ui-ci/src/main/resources/ci/testSuites/onapUiSanity.xml +++ b/ui-ci/src/main/resources/ci/testSuites/onapUiSanity.xml @@ -1,34 +1,33 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> -<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="1" data-provider-thread-count="1"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="1" + data-provider-thread-count="1"> - <parameter name="makeDistribution" value="false"/> + <parameter name="makeDistribution" value="false"/> <test name="uiSanity"> <classes> - <class name="org.openecomp.sdc.ci.tests.execute.sanity.Vf"> - <methods> - <include name="changeInstanceNameInVfTest"/> - </methods> - </class> + <class name="org.openecomp.sdc.ci.tests.execute.sanity.Vf"> + <methods> + <include name="changeInstanceNameInVfTest"/> + </methods> + </class> - <class name="org.openecomp.sdc.ci.tests.execute.sanity.Service"> - <methods> - <include name="updateService"/> - </methods> - </class> + <class name="org.openecomp.sdc.ci.tests.execute.sanity.Service"> + <methods> + <include name="updateService"/> + </methods> + </class> - <class name="org.openecomp.sdc.ci.tests.execute.sanity.OnboardingFlowsUI"> - <methods> - <include name="onapOnboardVNFflow"/> - <include name="onapOnboardVSPValidationsSanityFlow"/> - </methods> - </class> + <class name="org.openecomp.sdc.ci.tests.execute.sanity.OnboardingFlowsUi"> + <methods> + <include name="onapOnboardVNFflow"/> + <include name="onapOnboardVSPValidationsSanityFlow"/> + </methods> + </class> - - </classes> - </test> <!-- uitests --> -</suite> <!-- uisuite -->
\ No newline at end of file + </test> +</suite> |