Skip to content

Instantly share code, notes, and snippets.

@j4cksw
Last active May 16, 2016 16:54
Show Gist options
  • Select an option

  • Save j4cksw/087447075e7e97e8d6341920a115fc9a to your computer and use it in GitHub Desktop.

Select an option

Save j4cksw/087447075e7e97e8d6341920a115fc9a to your computer and use it in GitHub Desktop.
public class FizzBuzzTest {
@Test
public void say_Given1_Return1(){
FizzBuzz fizzBuzz = new FizzBuzz();
String result = fizzBuzz.say(3);
Assert.assertEquals("fizz", result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment