]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.unit/src/main/java/org/argeo/slc/unit/process/SlcExecutionTestUtils.java
Introduce H
[gpl/argeo-slc.git] / runtime / org.argeo.slc.unit / src / main / java / org / argeo / slc / unit / process / SlcExecutionTestUtils.java
index 2e9f38e3aed2a12d598d7246d48ba21f670bc82a..65f3ec1dd271a768ce30d3369536981dd5631e95 100644 (file)
@@ -1,3 +1,19 @@
+/*\r
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>\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
+\r
 package org.argeo.slc.unit.process;\r
 \r
 import static junit.framework.Assert.assertEquals;\r
@@ -68,8 +84,8 @@ public abstract class SlcExecutionTestUtils {
                }\r
 \r
                // FIXME: compare realized flows\r
-//             assertEquals(expected.getRealizedFlows().size(), reached\r
-//                             .getRealizedFlows().size());\r
+               // assertEquals(expected.getRealizedFlows().size(), reached\r
+               // .getRealizedFlows().size());\r
 \r
        }\r
 \r
@@ -78,7 +94,13 @@ public abstract class SlcExecutionTestUtils {
                assertNotNull(reached);\r
                assertEquals(expected.getUuid(), reached.getUuid());\r
                assertEquals(expected.getType(), reached.getType());\r
-               assertDateSec(expected.getBegin(), reached.getBegin());\r
+               assertDateSec(expected.getTimestamp(), reached.getTimestamp());\r
+               assertEquals(expected.getLogLines().size(), reached.getLogLines()\r
+                               .size());\r
+               for (int i = 0; i < expected.getLogLines().size(); i++) {\r
+                       assertEquals(expected.getLogLines().get(i), reached.getLogLines()\r
+                                       .get(i));\r
+               }\r
        }\r
 \r
        private SlcExecutionTestUtils() {\r