Totally not a malware, trust me!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
358 B

package totallynotmalware;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import totallynotmalware.i18n.I18n;
class TestI18n {
@BeforeEach
void setUp() throws Exception {
}
@Test
void testDefaultLang() {
assertEquals(I18n.get("title"), "Totally Not Malware");
}
}