Skip to content

Commit

Permalink
better test logging
Browse files Browse the repository at this point in the history
  • Loading branch information
aarsilv committed Jul 24, 2024
1 parent f999993 commit 961ba16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ dependencies {
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
events "started", "passed", "skipped", "failed"
exceptionFormat "full"
showExceptions true
showCauses true
showStackTraces true
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/cloud/eppo/EppoClientTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void testUnobfuscatedAssignments(File testFile) {

@ParameterizedTest
@MethodSource("getAssignmentTestData")
public void testObfsucatedAssignments(File testFile) {
public void testObfuscatedAssignments(File testFile) {
initClient(TEST_HOST, false, true, DUMMY_API_KEY);
AssignmentTestCase testCase = parseTestCaseFile(testFile);
runTestCase(testCase);
Expand Down

0 comments on commit 961ba16

Please sign in to comment.