aboutsummaryrefslogtreecommitdiff
path: root/juick-notifications
diff options
context:
space:
mode:
Diffstat (limited to 'juick-notifications')
-rw-r--r--juick-notifications/src/test/java/com/juick/components/test/NotificationTests.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/juick-notifications/src/test/java/com/juick/components/test/NotificationTests.java b/juick-notifications/src/test/java/com/juick/components/test/NotificationTests.java
index c4a4ed24..8aac9501 100644
--- a/juick-notifications/src/test/java/com/juick/components/test/NotificationTests.java
+++ b/juick-notifications/src/test/java/com/juick/components/test/NotificationTests.java
@@ -4,6 +4,8 @@ import ch.qos.logback.classic.Logger;
import ch.qos.logback.classic.spi.LoggingEvent;
import ch.qos.logback.core.Appender;
import com.juick.components.CleanUp;
+import com.juick.components.Notifications;
+import com.juick.components.service.TokenService;
import com.notnoop.apns.ApnsService;
import org.junit.Before;
import org.junit.Test;
@@ -34,6 +36,10 @@ public class NotificationTests {
ApnsService service;
@Mock
RestTemplate rest;
+ @Mock
+ TokenService tokenService;
+ @Mock
+ Notifications push;
@Before