Polish away public modifier on tests

This commit is contained in:
Moritz Halbritter
2022-12-16 16:08:44 +01:00
parent 1754018a7b
commit 08659baeba
9 changed files with 9 additions and 9 deletions

View File

@@ -39,7 +39,7 @@ import static org.assertj.core.api.Assertions.assertThat;
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT,
properties = "management.endpoints.jackson.isolated-object-mapper=false")
@ContextConfiguration(loader = ApplicationStartupSpringBootContextLoader.class)
public class JerseyActuatorIsolatedObjectMapperFalseTests {
class JerseyActuatorIsolatedObjectMapperFalseTests {
@LocalServerPort
private int port;

View File

@@ -39,7 +39,7 @@ import static org.assertj.core.api.Assertions.assertThat;
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT,
properties = "management.endpoints.jackson.isolated-object-mapper=true")
@ContextConfiguration(loader = ApplicationStartupSpringBootContextLoader.class)
public class JerseyActuatorIsolatedObjectMapperTrueTests {
class JerseyActuatorIsolatedObjectMapperTrueTests {
@LocalServerPort
private int port;

View File

@@ -54,7 +54,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*/
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@Testcontainers(disabledWithoutDocker = true)
public class SampleSessionMongoApplicationTests {
class SampleSessionMongoApplicationTests {
@Autowired
private TestRestTemplate restTemplate;

View File

@@ -51,7 +51,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*/
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@Testcontainers(disabledWithoutDocker = true)
public class SampleSessionRedisApplicationTests {
class SampleSessionRedisApplicationTests {
@Container
static RedisContainer redis = new RedisContainer();