File: testng.xml

package info (click to toggle)
uncommons-maths 1.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 672 kB
  • sloc: java: 4,954; xml: 245; makefile: 10
file content (36 lines) | stat: -rw-r--r-- 767 bytes parent folder | download | duplicates (2)
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
35
36
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

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

  <test name="Random" >
    <packages>
      <package name="org.uncommons.maths.random" />
    </packages>
  </test>

  <test name="Combinatorics" >
    <packages>
      <package name="org.uncommons.maths.combinatorics" />
    </packages>
  </test>

  <test name="Statistics" >
    <packages>
      <package name="org.uncommons.maths.statistics" />
    </packages>
  </test>

  <test name="Binary" >
    <packages>
      <package name="org.uncommons.maths.binary" />
    </packages>
  </test>

  <test name="Number" >
    <packages>
      <package name="org.uncommons.maths" />
      <package name="org.uncommons.maths.number" />
    </packages>
  </test>

</suite>