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

      void message​(String m)
      Add a message to log.
      Parameters:
      m - message to log.
    • getMessages

      List<String> getMessages()
      Gets the messages to log.
      Returns:
      messages to log
    • clearMessages

      void clearMessages()
      Empties the list of messages.