diff options
author | EvilSeph <evilseph@gmail.com> | 2012-03-22 18:17:38 -0400 |
---|---|---|
committer | EvilSeph <evilseph@gmail.com> | 2012-03-22 18:17:38 -0400 |
commit | 13040dfd62a5c39d072dc15eb3728077c02042c1 (patch) | |
tree | 7c7fc4c9907ff1fae08692ec03aec1719dabfe1d /src | |
parent | 4a3a177dddf24810831902783b44bf1c1d0d6197 (diff) | |
download | bukkit-13040dfd62a5c39d072dc15eb3728077c02042c1.tar bukkit-13040dfd62a5c39d072dc15eb3728077c02042c1.tar.gz bukkit-13040dfd62a5c39d072dc15eb3728077c02042c1.tar.lz bukkit-13040dfd62a5c39d072dc15eb3728077c02042c1.tar.xz bukkit-13040dfd62a5c39d072dc15eb3728077c02042c1.zip |
Added missing tests to TestPlayer.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/java/org/bukkit/plugin/messaging/TestPlayer.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java index 94199465..4a4032b6 100644 --- a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java +++ b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java @@ -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."); } |