Skip to content

Commit

Permalink
Unignore immutability tests since the github issue is solved meanwhile
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Klem <Yannic.Klem@bosch.io>
  • Loading branch information
Yannic92 committed May 30, 2022
1 parent eba25b4 commit 23e2d91
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public static final class GeneralFunctionalityTest {
private static final String KNOWN_LABEL_VALUE = "PROCESSING-DONE";

@Test
@Ignore("https://github.com/MutabilityDetector/MutabilityDetector/issues/185")
public void assertImmutability() {
assertInstancesOf(AcknowledgementLabels.class, areImmutable());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public final class DittoChannelValueValidatorTest {
public static final class GeneralFunctionalityTest {

@Test
@Ignore("https://github.com/MutabilityDetector/MutabilityDetector/issues/185")
public void assertImmutability() {
assertInstancesOf(DittoDurationValueValidator.class, areImmutable());
}
Expand Down Expand Up @@ -114,4 +113,4 @@ public void acceptChannelValue() {

}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public static final class GeneralFunctionalityTest {
private static final JsonValue KNOWN_VALUE = JsonValue.of(1);

@Test
@Ignore("https://github.com/MutabilityDetector/MutabilityDetector/issues/185")
public void assertImmutability() {
assertInstancesOf(DefaultMetadataHeader.class,
areImmutable(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public final class SemanticSignalTypeTest {
public static final class GeneralFunctionalityTest {

@Test
@Ignore("https://github.com/MutabilityDetector/MutabilityDetector/issues/185")
public void assertImmutability() {
assertInstancesOf(SemanticSignalType.class, areImmutable());
}
Expand Down Expand Up @@ -227,4 +226,4 @@ public void parseSemanticSignalTypeReturnsExpected() throws SignalTypeFormatExce

}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public void setUp() {
}

@Test
@Ignore("https://github.com/MutabilityDetector/MutabilityDetector/issues/185")
public void assertImmutability() {
assertInstancesOf(ImmutableJsonDouble.class, areImmutable());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public void setUp() {
}

@Test
@Ignore("https://github.com/MutabilityDetector/MutabilityDetector/issues/185")
public void assertImmutability() {
assertInstancesOf(ImmutableJsonInt.class, areImmutable());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public void setUp() {
}

@Test
@Ignore("https://github.com/MutabilityDetector/MutabilityDetector/issues/185")
public void assertImmutability() {
assertInstancesOf(ImmutableJsonLong.class, areImmutable());
}
Expand Down

0 comments on commit 23e2d91

Please sign in to comment.