Package vee.items.armors

Examples of vee.items.armors.Corset


   */
  @Test
  public void testEquipToEmptySlot() {
    System.out.println("Testing equipping a piece of equipment to an empty slot");

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

    boolean result = h.equip(corset);
    assertEquals(result, true);
View Full Code Here


   */
  @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);
View Full Code Here

   */
  @Test
  public void testEquipOverEquipmentWithNoBag() {
    System.out.println("Testing equipping over a piece of equipment with no bag causes issues");

    Corset corset = new Corset();
    Corset corset2 = new Corset();


    Player player = new Player();

    player.equip(corset);
View Full Code Here

   */
  @Test
  public void testUnequip() {
    System.out.println("Testing equipping and unequipping a piece of equipment");

    Corset corset = new Corset();

    Henchwoman h = new Henchwoman();
    h.inventory.addBag();

    h.equip(corset);
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();

View Full Code Here

   * Testing equipping a corset on an empty chest slot.
   */
  @Test
  public void testEquipCorsetOnEmptyChestSlot() {
    System.out.println("Testing equipping a corset on an empty chest slot");
    Corset corset = new Corset();
    Henchwoman h = new Henchwoman();
   
    h.unequip(h.equipment.getChest());

    assertEquals(h.equipment.getChest(), null);
View Full Code Here

   * Testing equipping a corset on an equipped chest slot.
   */
  @Test
  public void testEquipCorsetOnEquippedChestSlot() {
    System.out.println("Testing equipping a corset on an equipped chest slot");
    Corset corset = new Corset();
    Corset corset2 = new Corset();
    Henchwoman h = new Henchwoman();

    h.equip(corset);
    boolean result = h.equip(corset2);

View Full Code Here

TOP

Related Classes of vee.items.armors.Corset

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.