source: branches/MetisMQI/src/test/java/weka/core/converters/SerializedInstancesTest.java

Last change on this file was 29, checked in by gnappo, 15 years ago

Taggata versione per la demo e aggiunto branch.

File size: 2.1 KB
Line 
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
21package weka.core.converters;
22
23import junit.framework.Test;
24import junit.framework.TestSuite;
25
26/**
27 * Tests SerializedInstancesLoader/SerializedInstancesSaver. Run from the command line with:<p/>
28 * java weka.core.converters.SerializedInstancesTest
29 *
30 * @author FracPete (fracpete at waikato dot ac dot nz)
31 * @version $Revision: 1.1 $
32 */
33public class SerializedInstancesTest 
34  extends AbstractFileConverterTest {
35
36  /**
37   * Constructs the <code>SerializedInstancesTest</code>.
38   *
39   * @param name the name of the test class
40   */
41  public SerializedInstancesTest(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 SerializedInstancesLoader();
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 SerializedInstancesSaver();
61  }
62
63  /**
64   * returns a test suite
65   *
66   * @return the test suite
67   */
68  public static Test suite() {
69    return new TestSuite(SerializedInstancesTest.class);
70  }
71
72  /**
73   * for running the test from commandline
74   *
75   * @param args the commandline arguments - ignored
76   */
77  public static void main(String[] args){
78    junit.textui.TestRunner.run(suite());
79  }
80}
81
Note: See TracBrowser for help on using the repository browser.