blob: 73bd727a5053ea177c0bad1e4bfa9450c66ef954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package sevenUnitsGUI;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import org.junit.jupiter.api.Test;
class I18nTest {
/**
* Tests that the default locale exists.
*
* Currently this test fails.
*/
@Test
void testDefaultLocale() {
Presenter p = new Presenter(new ViewBot());
assertNotNull(p.locales.get(Presenter.DEFAULT_LOCALE),
"Default locale does not exist.");
}
}
|