BAEL-1987 Fix Tests and Compilation In All Projects (#4693)

* BAEL-1987 Fix Tests and Compilation In All Projects

-Fixed various compilation issues, test assertions throughout the project.

* Update pom.xml
This commit is contained in:
Dhawal Kapil
2018-07-13 03:37:27 +05:30
committed by Grzegorz Piwowarek
parent ed872e6118
commit 8270c6d61a
24 changed files with 82 additions and 189 deletions
@@ -12,7 +12,7 @@ import org.junit.ClassRule;
import org.junit.Test;
import org.testcontainers.containers.DockerComposeContainer;
public class DockerComposeContainerUnitTest {
public class DockerComposeContainerLiveTest {
@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 GenericContainerUnitTest {
public class GenericContainerLiveTest {
@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 PostgreSqlContainerUnitTest {
public class PostgreSqlContainerLiveTest {
@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 WebDriverContainerUnitTest {
public class WebDriverContainerLiveTest {
@Rule
public BrowserWebDriverContainer chrome
= new BrowserWebDriverContainer()