()
| 35 | } |
| 36 | |
| 37 | @Test |
| 38 | public void testGet() { |
| 39 | Cvar.getInstance().Set("rene", "is cool."); |
| 40 | |
| 41 | Assert.assertEquals("is cool.", Cvar.getInstance().Get("rene", "default", 0).string); |
| 42 | } |
| 43 | |
| 44 | @Test |
| 45 | public void testGetDefault() { |
nothing calls this directly
no test coverage detected