thingsboard-memoizeit

Was add couple test methods

9/3/2018 1:32:29 PM

Details

diff --git a/application/src/test/java/org/thingsboard/server/controller/sql/EntityViewControllerSqlTest.java b/application/src/test/java/org/thingsboard/server/controller/sql/EntityViewControllerSqlTest.java
index 84e621f..e10610a 100644
--- a/application/src/test/java/org/thingsboard/server/controller/sql/EntityViewControllerSqlTest.java
+++ b/application/src/test/java/org/thingsboard/server/controller/sql/EntityViewControllerSqlTest.java
@@ -15,13 +15,30 @@
  */
 package org.thingsboard.server.controller.sql;
 
+import org.junit.Assert;
+import org.junit.Test;
+import org.thingsboard.server.common.data.EntityView;
 import org.thingsboard.server.controller.BaseEntityViewControllerTest;
 import org.thingsboard.server.dao.service.DaoSqlTest;
 
+import java.util.Arrays;
+
 /**
  * Created by Victor Basanets on 8/27/2017.
  */
 @DaoSqlTest
 public class EntityViewControllerSqlTest
         extends BaseEntityViewControllerTest {
+
+    @Test
+    public void testSaveEntityViewWithIdOfDevice() throws Exception {
+        super.testSaveEntityViewWithIdOfDevice();
+    }
+
+    @Test
+    public void testFindEntityViewById() throws Exception {
+        super.testFindEntityViewById();
+    }
+
+
 }