Created
November 22, 2021 12:58
-
-
Save bartubozkurt/99bff97f0ff21b5eb9e561a7de5905aa to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@Test | |
void betweenLessAndManyPoints() { | |
assertEquals(49+50, pp.totalPoints(49, 5)); | |
assertEquals(50*3, pp.totalPoints(50, 5)); | |
} | |
@Test | |
void betweenLessAndManyLives() { | |
assertEquals(500*3, pp.totalPoints(500, 3)); | |
assertEquals(500+30, pp.totalPoints(500, 2)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment