Skip to content

Commit

Permalink
use junit5 for seednode unit tests and log full stack traces.
Browse files Browse the repository at this point in the history
  • Loading branch information
christophsturm committed Aug 1, 2019
1 parent 18115c9 commit e36f36f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,18 @@ configure(project(':seednode')) {
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
testCompile "org.springframework:spring-test:$springVersion"
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.3.2'
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.3.2')
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
exceptionFormat "full"
}
}

}


Expand Down
2 changes: 1 addition & 1 deletion seednode/src/test/java/bisq/seednode/GuiceSetupTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import com.google.inject.Guice;

import org.junit.Test;
import org.junit.jupiter.api.Test;

public class GuiceSetupTest {
@Test
Expand Down

0 comments on commit e36f36f

Please sign in to comment.