Skip to content

Commit d774c95

Browse files
committed
Fix unit test.
1 parent d2ecd5c commit d774c95

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/sds-aspect-model-aas-generator/src/test/java/io/openmanufacturing/sds/aspectmodel/aas/AspectModelAASGeneratorTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212
*/
1313
package io.openmanufacturing.sds.aspectmodel.aas;
1414

15-
import static org.junit.jupiter.api.Assertions.assertEquals;
16-
import static org.junit.jupiter.api.Assertions.assertFalse;
17-
import static org.junit.jupiter.api.Assertions.assertTrue;
15+
import static org.junit.jupiter.api.Assertions.*;
1816

1917
import java.io.ByteArrayInputStream;
2018
import java.io.ByteArrayOutputStream;
@@ -227,7 +225,9 @@ void testGenerateAasxFromBammAspectWithEnumeration() throws IOException, Deseria
227225
value = TestAspect.class,
228226
mode = EnumSource.Mode.EXCLUDE,
229227
names = {
230-
"ASPECT_WITH_STRING_ENUMERATION"
228+
"ASPECT_WITH_STRING_ENUMERATION",
229+
"MODEL_WITH_CYCLES",
230+
"MODEL_WITH_BROKEN_CYCLES"
231231
} )
232232
// anonymous enumeration in test has no urn for enum values but is required for Concept
233233
// Description referencing

0 commit comments

Comments
 (0)