Extract an interface out of Sone.
[Sone.git] / src / test / java / net / pterodactylus / sone / text / SoneTextParserTest.java
index 444f45f..2c04b23 100644 (file)
@@ -20,11 +20,13 @@ package net.pterodactylus.sone.text;
 import java.io.IOException;
 import java.io.StringReader;
 import java.util.Arrays;
+import java.util.Collection;
 
 import com.google.common.base.Optional;
 
 import junit.framework.TestCase;
 import net.pterodactylus.sone.data.Sone;
+import net.pterodactylus.sone.data.SoneImpl;
 import net.pterodactylus.sone.database.SoneProvider;
 
 /**
@@ -184,7 +186,7 @@ public class SoneTextParserTest extends TestCase {
                 */
                @Override
                public Optional<Sone> getSone(final String soneId) {
-                       return Optional.<Sone> fromNullable(new Sone(soneId, false) {
+                       return Optional.<Sone>of(new SoneImpl(soneId, false) {
 
                                /**
                                 * {@inheritDoc}
@@ -196,6 +198,30 @@ public class SoneTextParserTest extends TestCase {
                        });
                }
 
+               /**
+                * {@inheritDocs}
+                */
+               @Override
+               public Collection<Sone> getSones() {
+                       return null;
+               }
+
+               /**
+                * {@inheritDocs}
+                */
+               @Override
+               public Collection<Sone> getLocalSones() {
+                       return null;
+               }
+
+               /**
+                * {@inheritDocs}
+                */
+               @Override
+               public Collection<Sone> getRemoteSones() {
+                       return null;
+               }
+
        }
 
 }