Adopt Spring Java Format's JUnit 5 check

Closes gh-941
This commit is contained in:
Andy Wilkinson
2019-07-04 09:31:24 +01:00
parent 66e871f2c9
commit deed4863fb
10 changed files with 28 additions and 27 deletions

View File

@@ -56,7 +56,7 @@ class MainControllerStatsIntegrationTests extends AbstractFullStackInitializrInt
private ProjectGenerationStatPublisher projectGenerationStatPublisher;
@BeforeEach
public void setup() {
void setup() {
this.statsMockController.stats.clear();
// Make sure our mock is going to be invoked with the stats
this.projectGenerationStatPublisher

View File

@@ -76,7 +76,7 @@ class ProjectGenerationStatPublisherTests {
private MockRestServiceServer mockServer;
@BeforeEach
public void setUp() {
void setUp() {
configureService(createProperties());
}