Package com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks

Source Code of com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks.MallardTests

package com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks;

import static org.junit.Assert.*;
import org.junit.*;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks.Duck;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks.MallardDuck;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.flight.*;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks.*;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.testhelpers.DuckTester;

public class MallardTests {
 
  private Duck mallard;
     
  @Before
  public void setup(){
      mallard = new MallardDuck();
   }

  @Test
  public void testInheritedSwim() {
    //Given: A Mallard duck
    //When: It swims using the inherited swim method
    //Then: It should demonstrate the correct swim behavior
    assertTrue(DuckTester.inheritedSwim(mallard));
  }
 
  @Test
  public void testDefaultFlyBehavior(){
    //Given: A Mallard duck
    //And: It has default flight behavior set by the constructor
    //When: The Mallard is asked to fly
    //Then: It should demonstrate the correct flight behavior
    String expected = "I'm flying, like a boss...bird!";
    assertTrue(DuckTester.flyBehavior(mallard, expected));
  }
 
  @Test
  public void testDefaultQuackBehavior(){
    //Given: A Mallard duck
    //And: It has default quacking behavior set by the constructor
    //When: The Mallard is asked to quack
    //Then: It should demonstrate the correct quacking behavior
    String expected = "Quack fo' rizzle, bitches!";
    assertTrue(DuckTester.quackBehavior(mallard, expected));
  }
 
  @Test
  public void testCustomFlyBehavior(){
    //Given: A Mallard duck
    //And: I want to change the flight behavior at runtime from its default
    //When: The flight behavior is changed
    mallard.setFlyBehavior(new FlyRocketPowered());
    //And: The Mallard is asked to fly
    //Then: It should demonstrate the new correct flight behavior
    String expected = "Ass rocket ahoy! For Zephram!";
    assertTrue(DuckTester.flyBehavior(mallard, expected));
  }
 
  @Test
  public void testCustomQuackBehavior(){
    //Given: A Mallard duck
    //And: I want to change the quacking behavior at runtime from its default
    //When: The quacking behavior is changed
    mallard.setQuackBehavior(new Squeak());
    //And: The Mallard is asked to quack
    //Then: It should demonstrate the new correct quacking behavior
    String expected = "Squeak? And I'm a 'duck'? Odd.";
    assertTrue(DuckTester.quackBehavior(mallard, expected));
  }
 
  @Test
  public void testCustomDisplayImplementation(){
    //Given: A Mallard duck
    //When: I want to display it
    //Then: It should display correctly using its own implementation
    String expected = "Big whoop. A mallard.";
    assertTrue(DuckTester.displayImplementation(mallard, expected));
  }
}
TOP

Related Classes of com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks.MallardTests

TOP
Copyright © 2018 www.massapi.com. 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.