1 | /* |
---|
2 | * This program is free software; you can redistribute it and/or modify |
---|
3 | * it under the terms of the GNU General Public License as published by |
---|
4 | * the Free Software Foundation; either version 2 of the License, or |
---|
5 | * (at your option) any later version. |
---|
6 | * |
---|
7 | * This program is distributed in the hope that it will be useful, |
---|
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
10 | * GNU General Public License for more details. |
---|
11 | * |
---|
12 | * You should have received a copy of the GNU General Public License |
---|
13 | * along with this program; if not, write to the Free Software |
---|
14 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
15 | */ |
---|
16 | |
---|
17 | /* |
---|
18 | * Copyright (C) 2006 University of Waikato, Hamilton, New Zealand |
---|
19 | */ |
---|
20 | |
---|
21 | package weka.core.converters; |
---|
22 | |
---|
23 | import junit.framework.Test; |
---|
24 | import junit.framework.TestSuite; |
---|
25 | |
---|
26 | /** |
---|
27 | * Tests LibSVMLoader/LibSVMSaver. Run from the command line with:<p/> |
---|
28 | * java weka.core.converters.LibSVMTest |
---|
29 | * |
---|
30 | * @author FracPete (fracpete at waikato dot ac dot nz) |
---|
31 | * @version $Revision: 5419 $ |
---|
32 | */ |
---|
33 | public class LibSVMTest |
---|
34 | extends AbstractFileConverterTest { |
---|
35 | |
---|
36 | /** |
---|
37 | * Constructs the <code>LibSVMTest</code>. |
---|
38 | * |
---|
39 | * @param name the name of the test class |
---|
40 | */ |
---|
41 | public LibSVMTest(String name) { |
---|
42 | super(name); |
---|
43 | } |
---|
44 | |
---|
45 | /** |
---|
46 | * returns the loader used in the tests. |
---|
47 | * |
---|
48 | * @return the configured loader |
---|
49 | */ |
---|
50 | public AbstractLoader getLoader() { |
---|
51 | return new LibSVMLoader(); |
---|
52 | } |
---|
53 | |
---|
54 | /** |
---|
55 | * returns the saver used in the tests. |
---|
56 | * |
---|
57 | * @return the configured saver |
---|
58 | */ |
---|
59 | public AbstractSaver getSaver() { |
---|
60 | return new LibSVMSaver(); |
---|
61 | } |
---|
62 | |
---|
63 | /** |
---|
64 | * Called by JUnit before each test method. This implementation creates |
---|
65 | * the default loader/saver to test and generates a test set of Instances. |
---|
66 | * |
---|
67 | * @throws Exception if an error occurs reading the example instances. |
---|
68 | */ |
---|
69 | protected void setUp() throws Exception { |
---|
70 | super.setUp(); |
---|
71 | |
---|
72 | m_CheckHeader = false; |
---|
73 | } |
---|
74 | |
---|
75 | /** |
---|
76 | * returns a test suite. |
---|
77 | * |
---|
78 | * @return the test suite |
---|
79 | */ |
---|
80 | public static Test suite() { |
---|
81 | return new TestSuite(LibSVMTest.class); |
---|
82 | } |
---|
83 | |
---|
84 | /** |
---|
85 | * for running the test from commandline. |
---|
86 | * |
---|
87 | * @param args the commandline arguments - ignored |
---|
88 | */ |
---|
89 | public static void main(String[] args){ |
---|
90 | junit.textui.TestRunner.run(suite()); |
---|
91 | } |
---|
92 | } |
---|
93 | |
---|