Extract an interface out of Sone.
[Sone.git] / src / test / java / net / pterodactylus / sone / text / SoneTextParserTest.java
index 53c52dd..2c04b23 100644 (file)
@@ -20,10 +20,14 @@ 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.core.SoneProvider;
 import net.pterodactylus.sone.data.Sone;
+import net.pterodactylus.sone.data.SoneImpl;
+import net.pterodactylus.sone.database.SoneProvider;
 
 /**
  * JUnit test case for {@link SoneTextParser}.
@@ -181,8 +185,8 @@ public class SoneTextParserTest extends TestCase {
                 * {@inheritDoc}
                 */
                @Override
-               public Sone getSone(final String soneId) {
-                       return new Sone(soneId, false) {
+               public Optional<Sone> getSone(final String soneId) {
+                       return Optional.<Sone>of(new SoneImpl(soneId, false) {
 
                                /**
                                 * {@inheritDoc}
@@ -191,7 +195,31 @@ public class SoneTextParserTest extends TestCase {
                                public String getName() {
                                        return soneId;
                                }
-                       };
+                       });
+               }
+
+               /**
+                * {@inheritDocs}
+                */
+               @Override
+               public Collection<Sone> getSones() {
+                       return null;
+               }
+
+               /**
+                * {@inheritDocs}
+                */
+               @Override
+               public Collection<Sone> getLocalSones() {
+                       return null;
+               }
+
+               /**
+                * {@inheritDocs}
+                */
+               @Override
+               public Collection<Sone> getRemoteSones() {
+                       return null;
                }
 
        }