Basic polyglot project

This commit is contained in:
2020-10-02 21:57:54 -04:00
commit 91cc4ac60f
11 changed files with 400 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package io.speice;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import org.junit.jupiter.api.Test;
public class PolyglotTest {
@Test
public void testGetsMessage() {
assertNotNull(Polyglot.getMessage());
}
}