testng.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
  19. <suite name="dolphinscheduler_e2e" parallel="true">
  20. <test name="dolphinscheduler_test" preserve-order="true">
  21. <groups>
  22. <run>
  23. <include name="functionTests"/>
  24. </run>
  25. </groups>
  26. <classes>
  27. <class name="org.apache.dolphinscheduler.testcase.LoginTest"></class>
  28. <class name="org.apache.dolphinscheduler.testcase.security.TenantManageTest"></class>
  29. <class name="org.apache.dolphinscheduler.testcase.security.UserManageTest"></class>
  30. <class name="org.apache.dolphinscheduler.testcase.project.CreateProjectTest"></class>
  31. <class name="org.apache.dolphinscheduler.testcase.project.CreateWorkflowTest"></class>
  32. <class name="org.apache.dolphinscheduler.testcase.deleteData.DeleteWorkflowTest"></class>
  33. <class name="org.apache.dolphinscheduler.testcase.deleteData.DeleteProjectTest"></class>
  34. <class name="org.apache.dolphinscheduler.testcase.deleteData.DeleteUserTest"></class>
  35. <class name="org.apache.dolphinscheduler.testcase.deleteData.DeleteTenantTest"></class>
  36. </classes>
  37. </test>
  38. <listeners>
  39. <listener class-name="org.uncommons.reportng.HTMLReporter" />
  40. <listener class-name="org.uncommons.reportng.JUnitXMLReporter" />
  41. </listeners>
  42. </suite>