Adding corrections to unit test code

revert-70aa11f8
Ace 7 years ago
parent 2ef3cfb39a
commit 981244f2c6

@ -478,18 +478,10 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
}
}
@Test
public void testSendRegistrationEmailNoMetaInfo() {
try {
@Test(expectedExceptions = DeviceManagementException.class)
public void testSendRegistrationEmailNoMetaInfo() throws ConfigurationManagementException, DeviceManagementException {
deviceMgtService.sendRegistrationEmail(null);
Assert.assertTrue(false);
} catch (ConfigurationManagementException e) {
Assert.assertTrue(false, "Error in sending registration email : Configration " +
"related error" + e.getMessage());
} catch (DeviceManagementException e) {
Assert.assertTrue(true, "Device Management Exception thrown when meta info for " +
"email sending is not available" + e.getMessage());
}
}
@Test

Loading…
Cancel
Save