We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c964531 commit ad6fbf8Copy full SHA for ad6fbf8
rangeseekbar/src/test/java/org/florescu/android/rangeseekbar/RangeSeekBarTest.java
@@ -1,12 +1,19 @@
1
package org.florescu.android.rangeseekbar;
2
3
+import org.junit.Test;
4
import org.junit.runner.RunWith;
5
import org.robolectric.RobolectricTestRunner;
6
import org.robolectric.annotation.Config;
7
8
+import static org.assertj.core.api.Assertions.assertThat;
9
+
10
@RunWith(RobolectricTestRunner.class)
11
@Config(constants = BuildConfig.class, sdk = 21)
12
public class RangeSeekBarTest {
13
-
14
+ @Test
15
+ public void emptyTest() {
16
+ // TODO
17
+ assertThat(true).isTrue();
18
+ }
19
}
0 commit comments