Skip to content

Instantly share code, notes, and snippets.

@ariejan
Created March 1, 2013 14:03
Show Gist options
  • Save ariejan/5064848 to your computer and use it in GitHub Desktop.
Save ariejan/5064848 to your computer and use it in GitHub Desktop.
Simple jUnit example for @avdgaag's TDD presentation.
public class Dog {
public String bark() {
return "WOOF!";
}
}
public class DogTest {
@Test
public void testAnnoyingBark() {
Dog dog = new Dog();
assertEquals("WOOF!", dog.bark());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment