aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/com/android/volley/toolbox/RequestQueueTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/android/volley/toolbox/RequestQueueTest.java')
-rw-r--r--src/test/java/com/android/volley/toolbox/RequestQueueTest.java15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/test/java/com/android/volley/toolbox/RequestQueueTest.java b/src/test/java/com/android/volley/toolbox/RequestQueueTest.java
index 1e4b82e..1899b71 100644
--- a/src/test/java/com/android/volley/toolbox/RequestQueueTest.java
+++ b/src/test/java/com/android/volley/toolbox/RequestQueueTest.java
@@ -16,21 +16,26 @@
package com.android.volley.toolbox;
-import com.android.volley.*;
+import static org.junit.Assert.assertNotNull;
+
+import com.android.volley.Cache;
+import com.android.volley.Network;
+import com.android.volley.Request;
+import com.android.volley.RequestQueue;
+import com.android.volley.ResponseDelivery;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;
-import static org.junit.Assert.assertNotNull;
-
@RunWith(RobolectricTestRunner.class)
public class RequestQueueTest {
@Test
public void publicMethods() throws Exception {
// Catch-all test to find API-breaking changes.
- assertNotNull(RequestQueue.class.getConstructor(Cache.class, Network.class, int.class,
- ResponseDelivery.class));
+ assertNotNull(
+ RequestQueue.class.getConstructor(
+ Cache.class, Network.class, int.class, ResponseDelivery.class));
assertNotNull(RequestQueue.class.getConstructor(Cache.class, Network.class, int.class));
assertNotNull(RequestQueue.class.getConstructor(Cache.class, Network.class));