cleanup work

This commit is contained in:
Eugen Paraschiv 2018-03-04 18:23:38 +02:00
parent b97310a15b
commit 2028662cd3
4 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ import java.util.List;
import org.junit.Assert;
import org.junit.Test;
public class CourseServiceTest {
public class CourseServiceUnitTest {
@Test
public void givenCourse_whenSetValuesUsingPropertyUtil_thenReturnSetValues() throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {

View File

@ -6,6 +6,7 @@ import com.github.dockerjava.api.model.Network;
import com.github.dockerjava.api.model.Network.Ipam;
import com.github.dockerjava.core.DockerClientBuilder;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import java.util.List;
@ -25,6 +26,7 @@ public class NetworkLiveTest {
}
@Test
@Ignore("temporarily")
public void whenListingNetworks_thenSizeMustBeGreaterThanZero() {
// when

View File

@ -13,7 +13,7 @@ import retrofit2.Retrofit;
import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory;
import retrofit2.converter.gson.GsonConverterFactory;
public class GitHubRxApiTest {
public class GitHubRxLiveTest {
GitHubRxApi gitHub;

View File

@ -7,7 +7,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
@ContextConfiguration(classes = { AdderController.class, AdderService.class })
public class AdderTest extends SerenityStory {
public class AdderIntegrationTest extends SerenityStory {
@Autowired
private AdderService adderService;