Created
December 18, 2016 12:27
-
-
Save AntonioDiaz/d6570f071b82f9610946b94c6e2c966b to your computer and use it in GitHub Desktop.
jUnit template
This file contains 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
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