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 package org.archive.util.fingerprint;
29
30
31 import junit.framework.Test;
32 import junit.framework.TestSuite;
33
34 /***
35 * JUnit test suite for MemLongFPSet
36 *
37 * @author <a href="mailto:me@jamesc.net">James Casey</a>
38 * @version $ Id:$
39 */
40 public class MemLongFPSetTest extends LongFPSetTestCase {
41 /***
42 * Create a new MemLongFPSetTest object
43 *
44 * @param testName the name of the test
45 */
46 public MemLongFPSetTest(final String testName) {
47 super(testName);
48 }
49
50 /***
51 * run all the tests for MemLongFPSetTest
52 *
53 * @param argv the command line arguments
54 */
55 public static void main(String argv[]) {
56 junit.textui.TestRunner.run(suite());
57 }
58
59 /***
60 * return the suite of tests for MemLongFPSetTest
61 *
62 * @return the suite of test
63 */
64 public static Test suite() {
65 return new TestSuite(MemLongFPSetTest.class);
66 }
67
68 LongFPSet makeLongFPSet() {
69 return new MemLongFPSet();
70 }
71
72 public void testFoo() {
73
74 }
75 }
76