Skip to content

Instantly share code, notes, and snippets.

@njbartlett
Created October 28, 2010 21:27
Show Gist options
  • Save njbartlett/652366 to your computer and use it in GitHub Desktop.
Save njbartlett/652366 to your computer and use it in GitHub Desktop.
package org.example.impl;
import junit.framework.TestCase;
public class BasicGreetingTest extends TestCase {
public void testHello() {
assertEquals("Hello Fred", new BasicGreeting().sayHello("Fred"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment