Skip to content

Commit 322ae57

Browse files
committed
Remove test____ prefix
1 parent 54e563c commit 322ae57

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/test/java/rx/SingleTest.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ public Observable<?> call(Throwable throwable) {
13581358

13591359
@Test
13601360
@SuppressWarnings("unchecked")
1361-
public void testTakeUntilSuccess() {
1361+
public void takeUntilSuccess() {
13621362
Subscription sSource = mock(Subscription.class);
13631363
Subscription sOther = mock(Subscription.class);
13641364
TestSingle source = new TestSingle(sSource);
@@ -1376,7 +1376,7 @@ public void testTakeUntilSuccess() {
13761376

13771377
@Test
13781378
@SuppressWarnings("unchecked")
1379-
public void testTakeUntilSourceSuccess() {
1379+
public void takeUntilSourceSuccess() {
13801380
Subscription sSource = mock(Subscription.class);
13811381
Subscription sOther = mock(Subscription.class);
13821382
TestSingle source = new TestSingle(sSource);
@@ -1394,7 +1394,7 @@ public void testTakeUntilSourceSuccess() {
13941394

13951395
@Test
13961396
@SuppressWarnings("unchecked")
1397-
public void testTakeUntilNext() {
1397+
public void takeUntilNext() {
13981398
Subscription sSource = mock(Subscription.class);
13991399
Subscription sOther = mock(Subscription.class);
14001400
TestSingle source = new TestSingle(sSource);
@@ -1412,7 +1412,7 @@ public void testTakeUntilNext() {
14121412

14131413
@Test
14141414
@SuppressWarnings("unchecked")
1415-
public void testTakeUntilSourceSuccessObservable() {
1415+
public void takeUntilSourceSuccessObservable() {
14161416
Subscription sSource = mock(Subscription.class);
14171417
Subscription sOther = mock(Subscription.class);
14181418
TestSingle source = new TestSingle(sSource);
@@ -1430,7 +1430,7 @@ public void testTakeUntilSourceSuccessObservable() {
14301430

14311431
@Test
14321432
@SuppressWarnings("unchecked")
1433-
public void testTakeUntilSourceError() {
1433+
public void takeUntilSourceError() {
14341434
Subscription sSource = mock(Subscription.class);
14351435
Subscription sOther = mock(Subscription.class);
14361436
TestSingle source = new TestSingle(sSource);
@@ -1449,7 +1449,7 @@ public void testTakeUntilSourceError() {
14491449

14501450
@Test
14511451
@SuppressWarnings("unchecked")
1452-
public void testTakeUntilSourceErrorObservable() {
1452+
public void takeUntilSourceErrorObservable() {
14531453
Subscription sSource = mock(Subscription.class);
14541454
Subscription sOther = mock(Subscription.class);
14551455
TestSingle source = new TestSingle(sSource);
@@ -1468,7 +1468,7 @@ public void testTakeUntilSourceErrorObservable() {
14681468

14691469
@Test
14701470
@SuppressWarnings("unchecked")
1471-
public void testTakeUntilOtherError() {
1471+
public void takeUntilOtherError() {
14721472
Subscription sSource = mock(Subscription.class);
14731473
Subscription sOther = mock(Subscription.class);
14741474
TestSingle source = new TestSingle(sSource);
@@ -1487,7 +1487,7 @@ public void testTakeUntilOtherError() {
14871487

14881488
@Test
14891489
@SuppressWarnings("unchecked")
1490-
public void testTakeUntilOtherErrorObservable() {
1490+
public void takeUntilOtherErrorObservable() {
14911491
Subscription sSource = mock(Subscription.class);
14921492
Subscription sOther = mock(Subscription.class);
14931493
TestSingle source = new TestSingle(sSource);
@@ -1506,7 +1506,7 @@ public void testTakeUntilOtherErrorObservable() {
15061506

15071507
@Test
15081508
@SuppressWarnings("unchecked")
1509-
public void testTakeUntilOtherCompleted() {
1509+
public void takeUntilOtherCompleted() {
15101510
Subscription sSource = mock(Subscription.class);
15111511
Subscription sOther = mock(Subscription.class);
15121512
TestSingle source = new TestSingle(sSource);
@@ -1671,7 +1671,7 @@ public void testDownstreamUnsubscribesObservable() {
16711671
}
16721672

16731673
@Test
1674-
public void testTakeUntilSimple() {
1674+
public void takeUntilSimple() {
16751675
PublishSubject<String> stringSubject = PublishSubject.create();
16761676
Single<String> single = stringSubject.toSingle();
16771677

@@ -1693,7 +1693,7 @@ public void call(Throwable throwable) {
16931693
}
16941694

16951695
@Test
1696-
public void testTakeUntilObservable() {
1696+
public void takeUntilObservable() {
16971697
PublishSubject<String> stringSubject = PublishSubject.create();
16981698
Single<String> single = stringSubject.toSingle();
16991699
PublishSubject<String> otherSubject = PublishSubject.create();

0 commit comments

Comments
 (0)