Code review comments applied.
authorAlexander Smorkalov <alexander.smorkalov@itseez.com>
Mon, 12 Nov 2012 13:47:20 +0000 (17:47 +0400)
committerAlexander Smorkalov <alexander.smorkalov@itseez.com>
Mon, 12 Nov 2012 13:47:20 +0000 (17:47 +0400)
modules/java/android_test/src/org/opencv/test/OpenCVTestCase.java
modules/java/android_test/src/org/opencv/test/OpenCVTestRunner.java
modules/java/android_test/src/org/opencv/test/highgui/VideoCaptureTest.java

index f8f3c6f..6acf0b3 100644 (file)
@@ -28,7 +28,7 @@ public class OpenCVTestCase extends TestCase {
     //change to 'true' to unblock fail on fail("Not yet implemented")
     public static final boolean passNYI = true;
 
-    protected static boolean isEnabled = true;
+    protected static boolean isTestCaseEnabled = true;
 
     protected static final int matSize = 10;
     protected static final double EPS = 0.001;
index f778012..3bd0be2 100644 (file)
@@ -2,9 +2,6 @@ package org.opencv.test;
 
 import java.io.File;
 import java.io.IOException;
-//import java.util.Iterator;
-
-//import junit.framework.TestCase;
 import junit.framework.Assert;
 
 import org.opencv.android.Utils;
@@ -74,17 +71,6 @@ public class OpenCVTestRunner extends InstrumentationTestRunner {
 
         // Note: VideoCapture tests turned off by flag field in VideoCaptureTest class
 
-//        if(OpenCVTestCase.passNYI) {
-//            // turn off problematic camera tests
-//            Iterator<TestCase> it = androidTestRunner.getTestCases().iterator();
-//            while (it.hasNext()) {
-//                String name = it.next().toString();
-//                if (name.contains("VideoCaptureTest"))
-//                    it.remove();
-//            }
-//        }
-
-
         super.onStart();
     }
 
index ce21071..903768f 100644 (file)
@@ -19,13 +19,13 @@ public class VideoCaptureTest extends OpenCVTestCase {
         super.setUp();
 
         capture = null;
-        isEnabled = false;
+        isTestCaseEnabled = false;
         isSucceed = false;
         isOpened = false;
     }
 
     public void testGet() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -39,7 +39,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testGetSupportedPreviewSizes() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -54,7 +54,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testGrab() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -64,7 +64,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testGrabFromRealCamera() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -78,7 +78,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testIsOpened() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -87,7 +87,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testIsOpenedRealCamera() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -101,7 +101,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testOpen() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -116,7 +116,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testRead() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -132,7 +132,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testRelease() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -147,7 +147,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testRetrieveMat() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -164,7 +164,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testRetrieveMatInt() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -181,7 +181,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testSet() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }
 
@@ -205,7 +205,7 @@ public class VideoCaptureTest extends OpenCVTestCase {
     }
 
     public void testVideoCaptureInt() {
-        if (!isEnabled) {
+        if (!isTestCaseEnabled) {
             fail("Not yet implemented");
         }