Skip to content

Instantly share code, notes, and snippets.

@AntonioDiaz
Created December 18, 2016 12:27
Show Gist options
  • Save AntonioDiaz/d6570f071b82f9610946b94c6e2c966b to your computer and use it in GitHub Desktop.
Save AntonioDiaz/d6570f071b82f9610946b94c6e2c966b to your computer and use it in GitHub Desktop.
jUnit template
package algorithms.easy;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class TemplateTest {
@Test
public void changedLettersInput01(){
MarsExploration marsExploration = new MarsExploration("SOSSPSSQSSOR");
assertEquals(3, marsExploration.changedLetters());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment