summaryrefslogtreecommitdiffstats
path: root/watchmaker/etc/testng-headless.xml
blob: 262a7a8645fb62d00ecea580c926a68b467adc87 (plain)
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
32
33
34
<!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" >
    <!-- Don't run FEST tests in a headless environment. -->
    <groups><run><exclude name="display-required" /></run></groups>
    <packages>
      <package name="org.uncommons.swing.*" />
      <package name="org.uncommons.watchmaker.swing.*" />
    </packages>
  </test>

  <test name="Examples" >
    <!-- Don't run FEST tests in a headless environment. -->
    <groups><run><exclude name="display-required" /></run></groups>
    <packages>
      <package name="org.uncommons.watchmaker.examples.*" />
    </packages>
  </test>

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

</suite>