1 | package g0803.bindingofshiba.model.end; | |
2 | ||
3 | public class GameOver { | |
4 | ||
5 | private final boolean victory; | |
6 | ||
7 | public GameOver(boolean victory) { | |
8 | this.victory = victory; | |
9 | } | |
10 | ||
11 | public boolean isVictory() { | |
12 |
2
1. isVictory : replaced boolean return with false for g0803/bindingofshiba/model/end/GameOver::isVictory → NO_COVERAGE 2. isVictory : replaced boolean return with true for g0803/bindingofshiba/model/end/GameOver::isVictory → NO_COVERAGE |
return victory; |
13 | } | |
14 | } | |
Mutations | ||
12 |
1.1 2.2 |