@Test
public void testCorrectQuack() {
//Given: You have a quack behavior
//When: It is set to Quack
QuackBehavior quackbehavior = new Quack();
//Then: The quack behavior should demonstrate the correct quacking
String expected = "Quack fo' rizzle, bitches!";
assertEquals(expected, quackbehavior.quack());
}