Bael 6556 3 (#4382)

* Added parent module on poms that have no parent defined

* Removed dependency reduced pom from undertow module

* [BAEL-6556] - Next set of renames of testcases

* [BAEL-6556] - Next set of renames of testcases

* [BAEL-6556] - Next set of renames of testcases

* [BAEL-6556] - Next set of renames of testcases
This commit is contained in:
Amit Pandey
2018-06-01 16:42:51 +05:30
committed by Grzegorz Piwowarek
parent cfa5f07c96
commit 7206e64bef
150 changed files with 187 additions and 182 deletions

View File

@@ -10,7 +10,7 @@ import static com.jayway.awaitility.Awaitility.await;
import static junit.framework.Assert.assertFalse;
import static junit.framework.Assert.assertTrue;
public class ConnectableObservableTest {
public class ConnectableObservableIntegrationTest {
@Test
public void givenConnectableObservable_whenConnect_thenGetMessage() throws InterruptedException {

View File

@@ -18,7 +18,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
public class FlowableTest {
public class FlowableIntegrationTest {
@Test public void whenFlowableIsCreated_thenItIsProperlyInitialized() {
Flowable<Integer> integerFlowable = Flowable.just(1, 2, 3, 4);

View File

@@ -5,7 +5,7 @@ import org.junit.Test;
import io.reactivex.Flowable;
import io.reactivex.Maybe;
public class MaybeTest {
public class MaybeUnitTest {
@Test
public void whenEmitsSingleValue_thenItIsObserved() {
Maybe<Integer> maybe = Flowable.just(1, 2, 3, 4, 5)

View File

@@ -6,7 +6,7 @@ import rx.Observable;
import static com.baeldung.rxjava.ObservableImpl.getTitle;
import static junit.framework.Assert.assertTrue;
public class ObservableTest {
public class ObservableUnitTest {
private String result = "";

View File

@@ -5,7 +5,7 @@ import rx.Observable;
import static junit.framework.Assert.assertTrue;
public class ResourceManagementTest {
public class ResourceManagementUnitTest {
@Test
public void givenResource_whenUsingOberservable_thenCreatePrintDisposeResource() throws InterruptedException {

View File

@@ -9,7 +9,7 @@ import org.junit.Test;
import java.util.concurrent.TimeUnit;
public class RxRelayTest {
public class RxRelayIntegrationTest {
@Test
public void whenObserverSubscribedToPublishRelay_thenItReceivesEmittedEvents () {

View File

@@ -6,7 +6,7 @@ import rx.Single;
import static junit.framework.Assert.assertTrue;
public class SingleTest {
public class SingleUnitTest {
@Test
public void givenSingleObservable_whenSuccess_thenGetMessage() throws InterruptedException {

View File

@@ -5,7 +5,7 @@ import rx.subjects.PublishSubject;
import static junit.framework.Assert.assertTrue;
public class SubjectTest {
public class SubjectUnitTest {
@Test
public void givenSubjectAndTwoSubscribers_whenSubscribeOnSubject_thenSubscriberBeginsToAdd() {

View File

@@ -14,7 +14,7 @@ import java.util.concurrent.TimeUnit;
import static com.jayway.awaitility.Awaitility.await;
import static org.junit.Assert.assertTrue;
public class UtilityOperatorsTest {
public class UtilityOperatorsIntegrationTest {
private int emittedTotal = 0;
private int receivedTotal = 0;

View File

@@ -5,7 +5,7 @@ import org.junit.Test;
import rx.Observable;
import rx.observers.TestSubscriber;
public class RxJavaFilterOperatorsTest {
public class RxJavaFilterOperatorsIntegrationTest {
@Test
public void givenRangeObservable_whenFilteringItems_thenOddItemsAreFiltered() {

View File

@@ -5,7 +5,7 @@ import org.junit.Test;
import rx.Observable;
import rx.observers.TestSubscriber;
public class RxJavaSkipOperatorsTest {
public class RxJavaSkipOperatorsIntegrationTest {
@Test
public void givenRangeObservable_whenSkipping_thenFirstFourItemsAreSkipped() {

View File

@@ -9,7 +9,7 @@ import rx.Observable;
import rx.observers.TestSubscriber;
import rx.schedulers.TestScheduler;
public class RxJavaTimeFilteringOperatorsTest {
public class RxJavaTimeFilteringOperatorsIntegrationTest {
@Test
public void givenTimedObservable_whenSampling_thenOnlySampleItemsAreEmitted() {

View File

@@ -9,7 +9,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
import static org.junit.Assert.assertTrue;
public class ExceptionHandlingTest {
public class ExceptionHandlingIntegrationTest {
private Error UNKNOWN_ERROR = new Error("unknown error");
private Exception UNKNOWN_EXCEPTION = new Exception("unknown exception");

View File

@@ -9,7 +9,7 @@ import java.util.concurrent.atomic.AtomicInteger;
import static org.junit.Assert.assertTrue;
public class OnErrorRetryTest {
public class OnErrorRetryIntegrationTest {
private Error UNKNOWN_ERROR = new Error("unknown error");

View File

@@ -11,7 +11,7 @@ import java.util.HashSet;
import java.util.List;
import java.util.Map;
public class RxAggregateOperatorsTest {
public class RxAggregateOperatorsUnitTest {
@Test
public void givenTwoObservable_whenConcatenatingThem_thenSuccessfull() {

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
public class RxMathematicalOperatorsTest {
public class RxMathematicalOperatorsUnitTest {
@Test
public void givenRangeNumericObservable_whenCalculatingAverage_ThenSuccessfull() {

View File

@@ -12,7 +12,7 @@ import rx.observables.StringObservable;
import rx.observers.TestSubscriber;
public class RxStringOperatorsTest
public class RxStringOperatorsUnitTest
{
@Test