Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit 6d9fe7d

Browse files
committed
Marking the AAS3 Constraint test with 'ignore' as the problem is on the java model part.
1 parent ff0939c commit 6d9fe7d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

validator/src/test/java/io/adminshell/aas/v3/model/validator/TestAASd_003.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import io.adminshell.aas.v3.model.Referable;
2222
import io.adminshell.aas.v3.model.impl.DefaultSubmodel;
23+
import org.junit.Ignore;
2324
import org.junit.Test;
2425

2526
import java.util.ArrayList;
@@ -38,14 +39,15 @@
3839
*/
3940
public class TestAASd_003 {
4041
@Test
42+
@Ignore
4143
public void idShortMatchCaseInsensitive() throws ValidationException {
4244
DefaultSubmodel smA = (DefaultSubmodel) ConstraintTestHelper.createSubmodel(new ArrayList<>());
4345
smA.setIdShort("idShort");
4446

4547
Referable smB = (DefaultSubmodel) ConstraintTestHelper.createSubmodel(new ArrayList<>());
4648
smB.setIdShort("IDSHORT");
4749

48-
// assertTrue(smA.equals(smB)); // TODO: should be true but requires adjustments in the Java Model
50+
assertTrue(smA.equals(smB)); // TODO: should be true but requires adjustments in the Java Model
4951

5052
}
5153

0 commit comments

Comments
 (0)