summaryrefslogtreecommitdiffstats
path: root/src/test/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/org/bukkit/plugin/messaging/TestPlayer.java39
1 files changed, 39 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 e0ce019d..7cb648a1 100644
--- a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java
+++ b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java
@@ -19,6 +19,9 @@ import org.bukkit.entity.Snowball;
import org.bukkit.entity.Vehicle;
import org.bukkit.event.entity.EntityDamageEvent;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
+import org.bukkit.inventory.Inventory;
+import org.bukkit.inventory.InventoryView;
+import org.bukkit.inventory.InventoryView.Property;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.PlayerInventory;
import org.bukkit.map.MapView;
@@ -679,4 +682,40 @@ public class TestPlayer implements Player {
public <T> void playEffect(Location loc, Effect effect, T data) {
throw new UnsupportedOperationException("Not supported yet.");
}
+
+ public InventoryView getOpenInventory() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public InventoryView openInventory(Inventory inventory) {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public InventoryView openWorkbench(Location location, boolean force) {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public void openInventory(InventoryView inventory) {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public void closeInventory() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public InventoryView openEnchanting(Location location, boolean force) {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public ItemStack getItemOnCursor() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public void setItemOnCursor(ItemStack item) {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public boolean setWindowProperty(Property prop, int value) {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
}