polyglot_jni/src/test/java/io/speice/PolyglotTest.java

15 lines
249 B
Java
Raw Normal View History

2020-10-02 21:57:54 -04:00
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());
}
}