|
@@ -17,6 +17,8 @@ import java.io.FileOutputStream;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
+import static org.junit.Assert.assertEquals;
|
|
|
+
|
|
|
@SpringBootTest(classes = FlowApplication.class)
|
|
|
@RunWith(SpringRunner.class)
|
|
|
public class FlowApplicationTest {
|
|
@@ -26,7 +28,10 @@ public class FlowApplicationTest {
|
|
|
private HistoryService historyService;
|
|
|
@Autowired
|
|
|
private ReportDatasourceService reportDatasourceService;
|
|
|
-
|
|
|
+ @Test
|
|
|
+ public void testExample() {
|
|
|
+ assertEquals(2, 1 + 1);
|
|
|
+ }
|
|
|
/* @Test
|
|
|
public void test() {
|
|
|
ExecSql execSql = new ExecSql();
|