Skip to content

Commit

Permalink
Add another meta test just to be sure
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmladenov committed Jul 14, 2024
1 parent ec6611c commit 4c5b831
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion andy/src/test/java/integration/LibraryMetaTestsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ void metaTestsWithMockitoAndCustomException() {
Result result = run("MockingAssignmentWithCustomExceptionLibrary", "MockingAssignmentWithCustomExceptionWrongWithoutAssertions", "MockingAssignmentWithCustomExceptionConfiguration");

assertThat(result.getMetaTests().getPassedMetaTests()).isEqualTo(0);
assertThat(result.getMetaTests().getTotalTests()).isEqualTo(1);
assertThat(result.getMetaTests().getTotalTests()).isEqualTo(2);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ public List<MetaTest> metaTests() {
return List.of(
MetaTest.withStringReplacement("my meta test",
"a == 10",
"a == 15")
"a == 15"),
MetaTest.withStringReplacement("another meta test",
"a == 10",
"a == 20")
);
}
}

0 comments on commit 4c5b831

Please sign in to comment.