Package vee.items.armors

Examples of vee.items.armors.Doublet


  @Test
  public void testEquipToAlreadyEquippedSlot() {
    System.out.println("Testing equipping a piece of equipment to an already equipped slot");

    Corset corset = new Corset();
    Doublet doublet = new Doublet();
    Henchwoman h = new Henchwoman();
    h.inventory.addBag();

    h.equip(corset);
    boolean result = h.equip(doublet);
View Full Code Here


  @Test
  public void testInInventory() {
    System.out.println("Testing truth of inventory items being contained");

    Corset corset = new Corset();
    Doublet doublet = new Doublet();
    Sword sword = new Sword();
    Stilleto stilleto = new Stilleto();
    Stilleto stilleto2 = new Stilleto();

    Henchwoman h = new Henchwoman();
View Full Code Here

TOP

Related Classes of vee.items.armors.Doublet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.