File: testng.xml

package info (click to toggle)
uncommons-watchmaker 0.7.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,336 kB
  • sloc: java: 14,170; xml: 2,136; makefile: 11
file content (31 lines) | stat: -rw-r--r-- 687 bytes parent folder | download | duplicates (4)
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
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="Unit Tests" verbose="1" >

  <test name="Evolution Framework" >
    <packages>
      <package name="org.uncommons.watchmaker.framework.*" />
    </packages>
  </test>

  <test name="Swing Module" >
    <packages>
      <package name="org.uncommons.swing.*" />
      <package name="org.uncommons.watchmaker.swing.*" />
    </packages>
  </test>

  <test name="Examples" >
    <packages>
      <package name="org.uncommons.watchmaker.examples.*" />
    </packages>
  </test>

  <test name="Utilities Module" >
    <packages>
      <package name="org.uncommons.util.*" />
    </packages>
  </test>

</suite>