Interface CFileVerifier

    • Method Detail

      • verifyEqualsStringContent

        default void verifyEqualsStringContent​(CVerificationQueue verificationQueue,
                                               java.io.File expectedFile)
        Verify that actual and expected file have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
      • verifyEqualsStringContent

        default void verifyEqualsStringContent​(CVerificationQueue verificationQueue,
                                               java.io.File expectedFile,
                                               java.lang.String message,
                                               java.lang.Object... params)
        Verify that actual and expected file have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyExists

        default void verifyExists​(CVerificationQueue verificationQueue)
        Verify that the file exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
      • verifyExists

        default void verifyExists​(CVerificationQueue verificationQueue,
                                  java.lang.String message,
                                  java.lang.Object... params)
        Verify that the file exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyIsNotExists

        default void verifyIsNotExists​(CVerificationQueue verificationQueue)
        Verify that the file does not exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
      • verifyIsNotExists

        default void verifyIsNotExists​(CVerificationQueue verificationQueue,
                                       java.lang.String message,
                                       java.lang.Object... params)
        Verify that the file does not exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsStringContent

        default void verifyNotEqualsStringContent​(CVerificationQueue verificationQueue,
                                                  CFile expectedFile)
        Verify that actual and expected file does not have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
      • verifyNotEqualsStringContent

        default void verifyNotEqualsStringContent​(CVerificationQueue verificationQueue,
                                                  CFile expectedFile,
                                                  java.lang.String message,
                                                  java.lang.Object... params)
        Verify that actual and expected file does not have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)