Skip to content

Instantly share code, notes, and snippets.

@kzkaed
Last active February 6, 2016 13:29
Show Gist options
  • Save kzkaed/f59854ca7e59e9381238 to your computer and use it in GitHub Desktop.
Save kzkaed/f59854ca7e59e9381238 to your computer and use it in GitHub Desktop.
public class Hiker {
public static String name() {
return "Diana";
}
}
public class HikerTest {
@Test
public void life_the_universe_and_everything() {
String expected = "Diana";
String actual = Hiker.name();
assertEquals(expected, actual);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment