removing unnecessary exceptions from testcase method.

This commit is contained in:
sinthuja 2017-10-10 22:09:46 +05:30
parent bbdc876311
commit a5c2228664

View File

@ -33,7 +33,7 @@ public class DataPublisherConfigTest extends BaseAnalyticsDataPublisherTest {
@Test(description = "Validating the behaviour od getInstance of the config before calling the init",
expectedExceptions = InvalidConfigurationStateException.class)
public void testGetInstanceWithoutInit() throws NoSuchFieldException, IllegalAccessException {
public void testGetInstanceWithoutInit() {
AnalyticsConfiguration.getInstance();
}