apply naming conventions to test-container test names
This commit is contained in:
parent
8fd641b074
commit
b0062c48ed
|
@ -12,7 +12,7 @@ import org.junit.ClassRule;
|
|||
import org.junit.Test;
|
||||
import org.testcontainers.containers.DockerComposeContainer;
|
||||
|
||||
public class DockerComposeContainerTests {
|
||||
public class DockerComposeContainerUnitTest {
|
||||
@ClassRule
|
||||
public static DockerComposeContainer compose =
|
||||
new DockerComposeContainer(
|
|
@ -13,7 +13,7 @@ import org.junit.platform.commons.annotation.Testable;
|
|||
import org.testcontainers.containers.GenericContainer;
|
||||
|
||||
@Testable
|
||||
public class GenericContainerTests {
|
||||
public class GenericContainerUnitTest {
|
||||
@ClassRule
|
||||
public static GenericContainer simpleWebServer =
|
||||
new GenericContainer("alpine:3.2")
|
|
@ -13,7 +13,7 @@ import org.junit.platform.commons.annotation.Testable;
|
|||
import org.testcontainers.containers.PostgreSQLContainer;
|
||||
|
||||
@Testable
|
||||
public class PostgreSqlContainerTests {
|
||||
public class PostgreSqlContainerUnitTest {
|
||||
@Rule
|
||||
public PostgreSQLContainer postgresContainer = new PostgreSQLContainer();
|
||||
|
|
@ -12,7 +12,7 @@ import org.testcontainers.DockerClientFactory;
|
|||
import org.testcontainers.containers.BrowserWebDriverContainer;
|
||||
import org.testcontainers.containers.GenericContainer;
|
||||
|
||||
public class WebDriverContainerTests {
|
||||
public class WebDriverContainerUnitTest {
|
||||
@Rule
|
||||
public BrowserWebDriverContainer chrome
|
||||
= new BrowserWebDriverContainer()
|
Loading…
Reference in New Issue