Package com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks

Source Code of com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks.SqueakTests

package com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks;

import static org.junit.Assert.*;

import org.junit.Test;

import com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks.QuackBehavior;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks.Squeak;

public class SqueakTests {
 
  @Test
  public void testCorrectQuack() {
    //Given: You have a quack behavior
    //When: It is set to Squeak
    QuackBehavior quackbehavior = new Squeak();
    //Then: The quack behavior should demonstrate the correct quacking
    String expected = "Squeak? And I'm a 'duck'? Odd.";
    assertEquals(expected, quackbehavior.quack());
  }
}
TOP

Related Classes of com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks.SqueakTests

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.