Guest User

Untitled

a guest
Apr 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. ## project.xml
  2. <test-dependencies>
  3. <test-type>
  4. <name>unit</name>
  5. </test-type>
  6. <test-type>
  7. <name>qa-functional</name>
  8. <test-dependency>
  9. <code-name-base>org.openide.nodes</code-name-base>
  10. <compile-dependency/>
  11. <test/>
  12. </test-dependency>
  13. <test-dependency>
  14. <code-name-base>org.openide.util</code-name-base>
  15. <compile-dependency/>
  16. <test/>
  17. </test-dependency>
  18. </test-type>
  19. </test-dependencies>
  20. ## project.properties
  21. #qa-unit
  22. test.unit.cp.extra=
  23. test.unit.run.cp.extra=
  24. #qa-functional
  25. test.qa-functional.cp.extra=${openide.nodes.dir}/modules/org-openide-nodes.jar:\${openide.util.dir}/lib/org-openide-util.jar
  26. test.qa-functional.run.cp.extra=
  27.  
  28. ## build-qa-functional.xml
  29. <?xml version="1.0"?>
  30. <project name="org.netbeans.modules.git/test-qa-functional" basedir="." default="all">
  31.  
  32. <!-- Imports default qa-functional-compiler and runidetest executor.
  33. jemmy and jellytools jars are on classpath for both. -->
  34. <import file="${xtest.home}/lib/templates/xtest-qa-functional.xml"/>
  35.  
  36. <!-- ========= -->
  37. <!-- Compilers -->
  38. <!-- ========= -->
  39.  
  40. <!-- You can override default qa-functional-compiler if you need something special -->
  41.  
  42. <target name="qa-functional-compiler" depends="init-cp">
  43. <buildTests srcdir="qa-functional/src" compileexcludes="**/data/**">
  44. <classpath>
  45. <path refid="test.qa-functional.compile.cp"/>
  46. <pathelement location="${openide/util.dir}/lib/org-openide-util.jar"/>
  47. <pathelement location="${openide/nodes.dir}/modules/org-openide-nodes.jar"/>
  48. </classpath>
  49. </buildTests>
  50. </target>
  51.  
  52.  
  53. <!-- ========= -->
  54. <!-- Executors -->
  55. <!-- ========= -->
  56.  
  57. <!-- This target executes tests inside IDE. It is defined in default-build-qa-functional.xml.
  58. If you need to customize it, you can uncomment the following and override it.
  59. <target name="runidetest" depends="init-cp">
  60. <executeTests pluginname="ide">
  61. <classpath refid="test.qa-functional.run.cp"/>
  62. </executeTests>
  63. </target>
  64. -->
  65. </project>
Add Comment
Please, Sign In to add comment