Showing
1 changed file
with
17 additions
and
0 deletions
@@ -15,13 +15,30 @@ | @@ -15,13 +15,30 @@ | ||
15 | */ | 15 | */ |
16 | package org.thingsboard.server.controller.sql; | 16 | package org.thingsboard.server.controller.sql; |
17 | 17 | ||
18 | +import org.junit.Assert; | ||
19 | +import org.junit.Test; | ||
20 | +import org.thingsboard.server.common.data.EntityView; | ||
18 | import org.thingsboard.server.controller.BaseEntityViewControllerTest; | 21 | import org.thingsboard.server.controller.BaseEntityViewControllerTest; |
19 | import org.thingsboard.server.dao.service.DaoSqlTest; | 22 | import org.thingsboard.server.dao.service.DaoSqlTest; |
20 | 23 | ||
24 | +import java.util.Arrays; | ||
25 | + | ||
21 | /** | 26 | /** |
22 | * Created by Victor Basanets on 8/27/2017. | 27 | * Created by Victor Basanets on 8/27/2017. |
23 | */ | 28 | */ |
24 | @DaoSqlTest | 29 | @DaoSqlTest |
25 | public class EntityViewControllerSqlTest | 30 | public class EntityViewControllerSqlTest |
26 | extends BaseEntityViewControllerTest { | 31 | extends BaseEntityViewControllerTest { |
32 | + | ||
33 | + @Test | ||
34 | + public void testSaveEntityViewWithIdOfDevice() throws Exception { | ||
35 | + super.testSaveEntityViewWithIdOfDevice(); | ||
36 | + } | ||
37 | + | ||
38 | + @Test | ||
39 | + public void testFindEntityViewById() throws Exception { | ||
40 | + super.testFindEntityViewById(); | ||
41 | + } | ||
42 | + | ||
43 | + | ||
27 | } | 44 | } |