Was add couple test methods

This commit is contained in:
viktorbasanets 2018-09-03 19:32:29 +03:00
parent 8fdfa909db
commit 64620a89ce

View File

@ -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();
}
}