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.Test;
|
||||
|
||||
public class CourseServiceTest {
|
||||
public class CourseServiceUnitTest {
|
||||
|
||||
@Test
|
||||
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.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
|
||||
|
|
|
@ -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;
|
||||
|
|
@ -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;
|
Loading…
Reference in New Issue