Fix int tests (#2607)
* Rename JdbcIntegrationTest to JdbcLiveTest * Rename JdbcIntegrationTest to JdbcLiveTest * Rename JdbcIntegrationTest to JdbcLiveTest * Rename Integration tests to Live tests * Turn off benchmarks
This commit is contained in:
parent
57f55e1b8c
commit
bf515679fe
|
@ -416,7 +416,8 @@
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>run-benchmarks</id>
|
<id>run-benchmarks</id>
|
||||||
<phase>integration-test</phase>
|
<!-- <phase>integration-test</phase>-->
|
||||||
|
<phase>none</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>exec</goal>
|
<goal>exec</goal>
|
||||||
</goals>
|
</goals>
|
||||||
|
|
|
@ -8,10 +8,10 @@ import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class NioEchoIntegrationTest {
|
public class NioEchoLiveTest {
|
||||||
|
|
||||||
Process server;
|
private Process server;
|
||||||
EchoClient client;
|
private EchoClient client;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws IOException, InterruptedException {
|
public void setup() throws IOException, InterruptedException {
|
|
@ -9,7 +9,7 @@ import java.io.IOException;
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertFalse;
|
import static org.junit.Assert.assertFalse;
|
||||||
|
|
||||||
public class UDPIntegrationTest {
|
public class UDPLiveTest {
|
||||||
private EchoClient client;
|
private EchoClient client;
|
||||||
|
|
||||||
@Before
|
@Before
|
|
@ -7,7 +7,7 @@ import java.io.File;
|
||||||
|
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
public class ScreenshotIntegrationTest {
|
public class ScreenshotLiveTest {
|
||||||
|
|
||||||
private Screenshot screenshot = new Screenshot("Screenshot.jpg");
|
private Screenshot screenshot = new Screenshot("Screenshot.jpg");
|
||||||
private File file = new File("Screenshot.jpg");
|
private File file = new File("Screenshot.jpg");
|
Loading…
Reference in New Issue