File tree 2 files changed +5
-5
lines changed
app/src/androidTest/java/com/zulip/android
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 46
46
@ LargeTest
47
47
@ FixMethodOrder (MethodSorters .NAME_ASCENDING )
48
48
@ RunWith (AndroidJUnit4 .class )
49
- public class ChatBoxTest {
49
+ public class RecyclerViewTests {
50
50
@ Rule
51
51
public ActivityTestRule <ZulipActivity > mActivityTestRule = new ActivityTestRule <>(ZulipActivity .class );
52
52
53
- public static String LOG_TAG = ChatBoxTest .class .getName ();
53
+ public static String LOG_TAG = RecyclerViewTests .class .getName ();
54
54
private static String testMessageStream ;
55
55
private static String testMessagePrivate ;
56
56
@@ -268,14 +268,14 @@ public static String getTestMessageStream() {
268
268
}
269
269
270
270
public static void setTestMessageStream (String testMessageStream ) {
271
- ChatBoxTest .testMessageStream = testMessageStream ;
271
+ RecyclerViewTests .testMessageStream = testMessageStream ;
272
272
}
273
273
274
274
public static String getTestMessagePrivate () {
275
275
return testMessagePrivate ;
276
276
}
277
277
278
278
public static void setTestMessagePrivate (String testMessagePrivate ) {
279
- ChatBoxTest .testMessagePrivate = testMessagePrivate ;
279
+ RecyclerViewTests .testMessagePrivate = testMessagePrivate ;
280
280
}
281
281
}
Original file line number Diff line number Diff line change 22
22
import java .util .Locale ;
23
23
24
24
import static android .support .test .espresso .matcher .ViewMatchers .assertThat ;
25
- import static com .zulip .android .activities .ChatBoxTest .LOG_TAG ;
25
+ import static com .zulip .android .activities .RecyclerViewTests .LOG_TAG ;
26
26
import static junit .framework .Assert .assertTrue ;
27
27
28
28
public class ViewAssertions {
You can’t perform that action at this time.
0 commit comments