cleanup work
This commit is contained in:
parent
b97310a15b
commit
2028662cd3
@ -7,7 +7,7 @@ import java.util.List;
|
|||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class CourseServiceTest {
|
public class CourseServiceUnitTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenCourse_whenSetValuesUsingPropertyUtil_thenReturnSetValues() throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
|
public void givenCourse_whenSetValuesUsingPropertyUtil_thenReturnSetValues() throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
|
@ -6,6 +6,7 @@ import com.github.dockerjava.api.model.Network;
|
|||||||
import com.github.dockerjava.api.model.Network.Ipam;
|
import com.github.dockerjava.api.model.Network.Ipam;
|
||||||
import com.github.dockerjava.core.DockerClientBuilder;
|
import com.github.dockerjava.core.DockerClientBuilder;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -25,6 +26,7 @@ public class NetworkLiveTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@Ignore("temporarily")
|
||||||
public void whenListingNetworks_thenSizeMustBeGreaterThanZero() {
|
public void whenListingNetworks_thenSizeMustBeGreaterThanZero() {
|
||||||
|
|
||||||
// when
|
// when
|
||||||
|
@ -13,7 +13,7 @@ import retrofit2.Retrofit;
|
|||||||
import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory;
|
import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory;
|
||||||
import retrofit2.converter.gson.GsonConverterFactory;
|
import retrofit2.converter.gson.GsonConverterFactory;
|
||||||
|
|
||||||
public class GitHubRxApiTest {
|
public class GitHubRxLiveTest {
|
||||||
|
|
||||||
GitHubRxApi gitHub;
|
GitHubRxApi gitHub;
|
||||||
|
|
@ -7,7 +7,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|||||||
import org.springframework.test.context.ContextConfiguration;
|
import org.springframework.test.context.ContextConfiguration;
|
||||||
|
|
||||||
@ContextConfiguration(classes = { AdderController.class, AdderService.class })
|
@ContextConfiguration(classes = { AdderController.class, AdderService.class })
|
||||||
public class AdderTest extends SerenityStory {
|
public class AdderIntegrationTest extends SerenityStory {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private AdderService adderService;
|
private AdderService adderService;
|
Loading…
x
Reference in New Issue
Block a user