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