Package com.illumon.iris.validation
Interface DataQualityTestCaseInterface
- All Known Subinterfaces:
DynamicValidatorInterface
- All Known Implementing Classes:
AuditEventLogValidator
,DataQualityTestCase
,DynamicValidator
,NonEmptyValidator
,NullValidator
,PersistentQueryConfigurationLogV2Validator
,PersistentQueryStateLogValidator
,ProcessEventLogValidator
,QueryOperationPerformanceLogValidator
,QueryPerformanceLogValidator
,UpdatePerformanceLogValidator
public interface DataQualityTestCaseInterface
A marker interface for classes which implement data quality tests.
-
Method Summary
Modifier and Type Method Description void
clearMessages()
Empties the list of messages.List<String>
getMessages()
Gets the messages to log.void
message(String m)
Add a message to log.void
setUp()
Setup the test.void
tearDown()
Tear down the test.
-
Method Details
-
setUp
void setUp()Setup the test. -
tearDown
void tearDown()Tear down the test. -
message
Add a message to log.- Parameters:
m
- message to log.
-
getMessages
Gets the messages to log.- Returns:
- messages to log
-
clearMessages
void clearMessages()Empties the list of messages.
-