Implement enhanced Sone provider correctly.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 2 Feb 2013 21:44:01 +0000 (22:44 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 2 Feb 2013 21:44:01 +0000 (22:44 +0100)
src/test/java/net/pterodactylus/sone/text/SoneTextParserTest.java

index 444f45f..7286001 100644 (file)
@@ -20,6 +20,7 @@ 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;
 
@@ -196,6 +197,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;
+               }
+
        }
 
 }