Last active
May 16, 2016 16:54
-
-
Save j4cksw/087447075e7e97e8d6341920a115fc9a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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