Package com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks

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

package com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks;

import static org.junit.Assert.*;

import org.junit.Test;

import com.visionarysoftwaresolutions.hfdpch1.tddstyle.demo.DemoMuteQuack;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks.QuackBehavior;

public class DemoMuteQuackTests {
 
  @Test
  public void testCorrectQuack() {
    //Given: You have a quack behavior
    //When: It is set to MuteQuack
    QuackBehavior quackbehavior = new DemoMuteQuack();
    //Then: The quack behavior should demonstrate the correct quacking
    String expected = "...Really? I can't quack. Oddly I do seem to do Englsih pretty well.";
    assertEquals(expected, quackbehavior.quack());
  }
}
TOP

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

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.