From: Andrey Pavlenko Date: Sun, 8 Apr 2012 17:26:17 +0000 (+0000) Subject: removing Java tests for removed classes X-Git-Tag: accepted/2.0/20130307.220821~801 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=35a7dfbd3769fa1378a12bcd9cdbdf7ed7794403;p=profile%2Fivi%2Fopencv.git removing Java tests for removed classes --- diff --git a/modules/java/android_test/src/org/opencv/test/ml/CvEMParamsTest.java b/modules/java/android_test/src/org/opencv/test/ml/CvEMParamsTest.java deleted file mode 100644 index 2b2b9f0..0000000 --- a/modules/java/android_test/src/org/opencv/test/ml/CvEMParamsTest.java +++ /dev/null @@ -1,37 +0,0 @@ -package org.opencv.test.ml; - -import org.opencv.ml.CvEMParams; - -import junit.framework.TestCase; - -public class CvEMParamsTest extends TestCase { - - public void testCvEMParams() { - new CvEMParams(); - } - - public void testGet_cov_mat_type() { - fail("Not yet implemented"); - } - - public void testGet_nclusters() { - fail("Not yet implemented"); - } - - public void testGet_start_step() { - fail("Not yet implemented"); - } - - public void testSet_cov_mat_type() { - fail("Not yet implemented"); - } - - public void testSet_nclusters() { - fail("Not yet implemented"); - } - - public void testSet_start_step() { - fail("Not yet implemented"); - } - -} diff --git a/modules/java/android_test/src/org/opencv/test/ml/CvEMTest.java b/modules/java/android_test/src/org/opencv/test/ml/CvEMTest.java deleted file mode 100644 index b649653..0000000 --- a/modules/java/android_test/src/org/opencv/test/ml/CvEMTest.java +++ /dev/null @@ -1,85 +0,0 @@ -package org.opencv.test.ml; - -import org.opencv.ml.CvEM; - -import junit.framework.TestCase; - -public class CvEMTest extends TestCase { - - public void testCalcLikelihood() { - fail("Not yet implemented"); - } - - public void testClear() { - fail("Not yet implemented"); - } - - public void testCvEM() { - new CvEM(); - } - - public void testCvEMMat() { - fail("Not yet implemented"); - } - - public void testCvEMMatMat() { - fail("Not yet implemented"); - } - - public void testCvEMMatMatCvEMParams() { - fail("Not yet implemented"); - } - - public void testGetCovs() { - fail("Not yet implemented"); - } - - public void testGetLikelihood() { - fail("Not yet implemented"); - } - - public void testGetLikelihoodDelta() { - fail("Not yet implemented"); - } - - public void testGetMeans() { - fail("Not yet implemented"); - } - - public void testGetNClusters() { - fail("Not yet implemented"); - } - - public void testGetProbs() { - fail("Not yet implemented"); - } - - public void testGetWeights() { - fail("Not yet implemented"); - } - - public void testPredictMat() { - fail("Not yet implemented"); - } - - public void testPredictMatMat() { - fail("Not yet implemented"); - } - - public void testTrainMat() { - fail("Not yet implemented"); - } - - public void testTrainMatMat() { - fail("Not yet implemented"); - } - - public void testTrainMatMatCvEMParams() { - fail("Not yet implemented"); - } - - public void testTrainMatMatCvEMParamsMat() { - fail("Not yet implemented"); - } - -}