()
| 39 | public class PreRuleTest extends AbstractCharacterTestCase |
| 40 | { |
| 41 | @BeforeEach |
| 42 | @Override |
| 43 | protected void setUp() throws Exception |
| 44 | { |
| 45 | // TODO Auto-generated method stub |
| 46 | super.setUp(); |
| 47 | RuleCheck preRule = new RuleCheck(); |
| 48 | preRule.setName("PRERULE"); |
| 49 | preRule.setDefault(false); |
| 50 | GameMode gameMode = SettingsHandler.getGameAsProperty().get(); |
| 51 | gameMode.getModeContext().getReferenceContext().importObject(preRule); |
| 52 | } |
| 53 | |
| 54 | @Test |
| 55 | public void testRule() throws Exception |
nothing calls this directly
no test coverage detected