Salome HOME
PMML feature
[modules/yacs.git] / src / yacsloader / pmml / YACSPMMLBasicsTest1.hxx
diff --git a/src/yacsloader/pmml/YACSPMMLBasicsTest1.hxx b/src/yacsloader/pmml/YACSPMMLBasicsTest1.hxx
new file mode 100755 (executable)
index 0000000..9821c1f
--- /dev/null
@@ -0,0 +1,56 @@
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+// Author : InckA
+
+#ifndef __YACSPMMLBASICSTEST1_HXX__
+#define __YACSPMMLBASICSTEST1_HXX__
+
+#include "YACSPMMLBasicsTest.hxx"
+
+#include <string>
+
+//classe test de YACS / PMMLlib
+  
+class YACSPMMLBasicsTest1 : public YACSPMMLBasicsTest
+{
+    CPPUNIT_TEST_SUITE(YACSPMMLBasicsTest1);
+
+    CPPUNIT_TEST( testYACSdriverLinearRegression );
+    CPPUNIT_TEST( testYACSdriverNeuralNetwork );
+    CPPUNIT_TEST( testYACSdriver_LRANN );
+    CPPUNIT_TEST( testYACSdriver_PmmlDoesNotExist );
+
+    CPPUNIT_TEST_SUITE_END();
+  
+public:
+    
+    void setUp(); 
+    void tearDown();    
+    void testYACSdriverLinearRegression(); 
+    void testYACSdriverNeuralNetwork();
+    void testYACSdriver_LRANN();
+    void testYACSdriver_PmmlDoesNotExist();
+
+private :
+    std::string resourcesDir;
+    
+};
+
+
+#endif