Improve RT CMS configuration
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / test / TestStatus.java
index e7ebecfa8973ca852c986ef8b0f92f00e89b16f1..a5e10d365aa244ea7354edd825da9d435d458ee7 100644 (file)
@@ -1,46 +1,31 @@
-/*\r
- * Copyright (C) 2007-2012 Argeo GmbH\r
- *\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *         http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-package org.argeo.slc.test;\r
-\r
-/**\r
- * Simple statuses. Ordering of the flags can be relied upon in aggregation: if\r
- * one element is failed, the aggregation is failed. Is one element is in ERROR,\r
- * the aggregation is in ERROR.\r
- * <p>\r
- * <ul>\r
- * <li>{@link #PASSED}: the test succeeded</li>\r
- * <li>{@link #FAILED}: the test could run, but did not reach the expected\r
- * result</li>\r
- * <li>{@link #ERROR}: an error during the test run prevented to get a\r
- * significant information on the tested system.</li>\r
- * </ul>\r
- * </p>\r
- */\r
-public interface TestStatus {\r
-       /** The flag for a passed test: 0 */\r
-       public final static Integer PASSED = 0;\r
-       /** The flag for a failed test: 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 Integer ERROR = 2;\r
-       public final static String STATUSSTR_PASSED = "PASSED";\r
-       public final static String STATUSSTR_FAILED = "FAILED";\r
-       public final static String STATUSSTR_ERROR = "ERROR";\r
-\r
-}\r
+package org.argeo.slc.test;
+
+/**
+ * Simple statuses. Ordering of the flags can be relied upon in aggregation: if
+ * one element is failed, the aggregation is failed. Is one element is in ERROR,
+ * the aggregation is in ERROR.
+ * <p>
+ * <ul>
+ * <li>{@link #PASSED}: the test succeeded</li>
+ * <li>{@link #FAILED}: the test could run, but did not reach the expected
+ * result</li>
+ * <li>{@link #ERROR}: an error during the test run prevented to get a
+ * significant information on the tested system.</li>
+ * </ul>
+ * </p>
+ */
+public interface TestStatus {
+       /** The flag for a passed test: 0 */
+       public final static Integer PASSED = 0;
+       /** The flag for a failed test: 1 */
+       public final static Integer FAILED = 1;
+       /**
+        * The flag for a test which could not properly run because of an error
+        * (there is no feedback on the behavior of the tested component): 2
+        */
+       public final static Integer ERROR = 2;
+       public final static String STATUSSTR_PASSED = "PASSED";
+       public final static String STATUSSTR_FAILED = "FAILED";
+       public final static String STATUSSTR_ERROR = "ERROR";
+
+}