1 package civitas.util;
2
3 import java.io.UnsupportedEncodingException;
4
5 import org.junit.jupiter.api.DisplayName;
6 import org.junit.jupiter.api.Test;
7
8 class InitialTestsTest {
9
10 @Test
11 @DisplayName("make sure that the initial tests run okay")
12 void test() throws UnsupportedEncodingException {
13 InitialTests.doTests();
14 }
15 }