source: src/test/java/weka/classifiers/pmml/consumer/TreeModelTest.java @ 4

Last change on this file since 4 was 4, checked in by gnappo, 14 years ago

Import di weka.

File size: 1.7 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 2009 University of Waikato, Hamilton, New Zealand
19 */
20
21package weka.classifiers.pmml.consumer;
22
23import weka.core.FastVector;
24
25import junit.framework.Test;
26import junit.framework.TestSuite;
27
28/**
29 * Tests the pmml TreeModel classifier.
30 *
31 * @author Mark Hall (mhall{[at]}pentaho{[dot]}com)
32 * @version $Revision: 5563 $
33 */
34public class TreeModelTest extends AbstractPMMLClassifierTest {
35
36  public TreeModelTest(String name) {
37    super(name);
38  }
39
40  protected void setUp() throws Exception {
41    m_modelNames = new FastVector();
42    m_dataSetNames = new FastVector();
43    m_modelNames.addElement("IRIS_TREE.xml");
44    m_modelNames.addElement("HEART_TREE.xml");
45    m_dataSetNames.addElement("iris.arff");
46    m_dataSetNames.addElement("heart-c2.arff");
47  }
48
49  public static Test suite() {
50    return new TestSuite(weka.classifiers.pmml.consumer.TreeModelTest.class);
51  }
52
53  public static void main(String[] args) {
54    junit.textui.TestRunner.run(suite());
55  }
56}
Note: See TracBrowser for help on using the repository browser.