mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-10 03:10:44 +00:00
removed useless import
This commit is contained in:
parent
612edac87b
commit
84ebf99ecc
@ -43,7 +43,7 @@ class AbsStepDefaultTest {
|
||||
assertEquals(step1, step1);
|
||||
assertEquals(step1, step2);
|
||||
assertNotEquals(new EmptyStep(), step1);
|
||||
assertNotEquals(step1, null);
|
||||
assertNotEquals(null, step1);
|
||||
assertNotEquals(step1, step3);
|
||||
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ class AbsStepWithLetTest {
|
||||
assertEquals(step1, step1);
|
||||
assertEquals(step1, step2);
|
||||
assertNotEquals(new EmptyStep(), step1);
|
||||
assertNotEquals(step1, null);
|
||||
assertNotEquals(null, step1);
|
||||
assertNotEquals(step1, step3);
|
||||
|
||||
}
|
||||
|
@ -47,7 +47,7 @@ class AppStepDefaultTest {
|
||||
assertEquals(step1, step1);
|
||||
assertEquals(step1, step2);
|
||||
assertNotEquals(new EmptyStep(), step1);
|
||||
assertNotEquals(step1, null);
|
||||
assertNotEquals(null, step1);
|
||||
assertNotEquals(step1, step3);
|
||||
assertNotEquals(step1, step4);
|
||||
assertNotEquals(step1, step5);
|
||||
|
@ -2,7 +2,6 @@ package edu.kit.typicalc.model.step;
|
||||
|
||||
import edu.kit.typicalc.model.Conclusion;
|
||||
import edu.kit.typicalc.model.Constraint;
|
||||
import edu.kit.typicalc.model.TypeVariableFactory;
|
||||
import edu.kit.typicalc.model.term.IntegerTerm;
|
||||
import edu.kit.typicalc.model.term.VarTerm;
|
||||
import edu.kit.typicalc.model.type.NamedType;
|
||||
@ -48,7 +47,7 @@ class LetStepDefaultTest {
|
||||
assertEquals(step1, step1);
|
||||
assertEquals(step1, step2);
|
||||
assertNotEquals(new EmptyStep(), step1);
|
||||
assertNotEquals(step1, null);
|
||||
assertNotEquals(null, step1);
|
||||
assertNotEquals(step1, step3);
|
||||
assertNotEquals(step1, step4);
|
||||
assertNotEquals(step1, step5);
|
||||
|
@ -44,7 +44,7 @@ class VarStepDefaultTest {
|
||||
assertEquals(step1, step1);
|
||||
assertEquals(step1, step2);
|
||||
assertNotEquals(new EmptyStep(), step1);
|
||||
assertNotEquals(step1, null);
|
||||
assertNotEquals(null, step1);
|
||||
assertNotEquals(step1, step3);
|
||||
assertNotEquals(step1, step4);
|
||||
assertNotEquals(step1, step5);
|
||||
|
@ -44,7 +44,7 @@ class VarStepWithLetTest {
|
||||
assertEquals(step1, step1);
|
||||
assertEquals(step1, step2);
|
||||
assertNotEquals(new EmptyStep(), step1);
|
||||
assertNotEquals(step1, null);
|
||||
assertNotEquals(null, step1);
|
||||
assertNotEquals(step1, step3);
|
||||
assertNotEquals(step1, step4);
|
||||
assertNotEquals(step1, step5);
|
||||
|
Loading…
Reference in New Issue
Block a user