]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/TestStatus.java
Improve unit tests
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / TestStatus.java
index 0f54d965596add0645ac361d318e19d992cc6caa..feebc930ac1ea2cf3d8f684bc3eadff5095ef2c3 100644 (file)
@@ -14,12 +14,12 @@ package org.argeo.slc.core.test;
  */\r
 public interface TestStatus {\r
        /** The flag for a passed test: 0 */\r
-       public final static int PASSED = 0;\r
+       public final static Integer PASSED = 0;\r
        /** The flag for a failed test: 1 */\r
-       public final static int FAILED = 1;\r
+       public final static Integer FAILED = 1;\r
        /**\r
         * The flag for a test which could not properly run because of an error\r
         * (there is no feedback on the behavior of the tested component): 2\r
         */\r
-       public final static int ERROR = 2;\r
+       public final static Integer ERROR = 2;\r
 }\r