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."); } }