1   /* MemLongFPSetTest
2    *
3    * $Id: MemLongFPSetTest.java 3437 2005-05-06 02:49:04Z stack-sf $
4    *
5    * Created Wed Jan 21 09:00:29 CET 2004
6    *
7    * Copyright (C) 2004 Internet Archive.
8    *
9    * This file is part of the Heritrix web crawler (crawler.archive.org).
10   *
11   * Heritrix is free software; you can redistribute it and/or modify
12   * it under the terms of the GNU Lesser Public License as published by
13   * the Free Software Foundation; either version 2.1 of the License, or
14   * any later version.
15   *
16   * Heritrix is distributed in the hope that it will be useful,
17   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   * GNU Lesser Public License for more details.
20   *
21   * You should have received a copy of the GNU Lesser Public License
22   * along with Heritrix; if not, write to the Free Software
23   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24   *
25   * File: MemLongFPSetTest.java
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