mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
updating the default configurations for test cases.
This commit is contained in:
parent
d214411f9a
commit
91e1268ca8
@ -69,8 +69,8 @@ public abstract class BaseDeviceManagementTest {
|
||||
|
||||
@BeforeSuite
|
||||
@Parameters({"datasource", "isMock"})
|
||||
public void setupDataSource(@Optional("src/test/resources/config/datasource/mysql/data-source-config") String datasource,
|
||||
@Optional("true") boolean isMock)
|
||||
public void setupDataSource(@Optional("src/test/resources/config/datasource/data-source-config") String datasource,
|
||||
@Optional("false") boolean isMock)
|
||||
throws Exception {
|
||||
datasourceLocation = datasource;
|
||||
mock = isMock;
|
||||
|
||||
@ -500,12 +500,14 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||
public void testUpdateDeviceInfo() throws DeviceManagementException,
|
||||
TransactionManagementException, DeviceDetailsMgtDAOException {
|
||||
Device device = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID,
|
||||
DEVICE_TYPE));
|
||||
if (!isMock()) {
|
||||
Device device = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID,
|
||||
DEVICE_TYPE));
|
||||
|
||||
boolean status = deviceMgtService.updateDeviceInfo(new DeviceIdentifier(DEVICE_ID,
|
||||
DEVICE_TYPE), device);
|
||||
Assert.assertTrue(status);
|
||||
boolean status = deviceMgtService.updateDeviceInfo(new DeviceIdentifier(DEVICE_ID,
|
||||
DEVICE_TYPE), device);
|
||||
Assert.assertTrue(status);
|
||||
}
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||
|
||||
Loading…
Reference in New Issue
Block a user