use of net.sf.latexdraw.service.PreferencesService in project latexdraw by arnobl.
the class TestAxesStyle method testGetLabel.
@ParameterizedTest
@EnumSource
void testGetLabel(final AxesStyle style) {
final ResourceBundle lang = new PreferencesService().getBundle();
assertNotNull(style.getLabel(lang));
assertFalse(style.getLabel(lang).isEmpty());
}
Aggregations