Added missing tests to TestPlayer.

This commit is contained in:
EvilSeph
2012-03-22 18:17:38 -04:00
parent 153168d8bd
commit a3581f1416

View File

@@ -637,6 +637,14 @@ public class TestPlayer implements Player {
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean isFlying() {
throw new UnsupportedOperationException("Not supported yet.");
}
public void setFlying(boolean value) {
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean addPotionEffect(PotionEffect effect) {
throw new UnsupportedOperationException("Not supported yet.");
}