io.mosip.testrig.apirig.utils.MasterDataUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apitest-masterdata Show documentation
Show all versions of apitest-masterdata Show documentation
Parent project of MOSIP Admin Services apitests
The newest version!
package io.mosip.testrig.apirig.utils;
import org.apache.log4j.Logger;
import org.testng.SkipException;
import io.mosip.testrig.apirig.dto.TestCaseDTO;
public class MasterDataUtil extends AdminTestUtil {
private static final Logger logger = Logger.getLogger(MasterDataUtil.class);
public static String isTestCaseValidForExecution(TestCaseDTO testCaseDTO) {
String testCaseName = testCaseDTO.getTestCaseName();
if (SkipTestCaseHandler.isTestCaseInSkippedList(testCaseName)) {
throw new SkipException(GlobalConstants.KNOWN_ISSUES);
}
return testCaseName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy