Annotation Type CIgnored


  • @Retention(RUNTIME)
    @Target(METHOD)
    public @interface CIgnored
    It happens when you want to remove test from your execution but in large projects it happens that you disable test and then forgot about it. To avoid such situation we have CIgnored.

    Please note:

    • We have a flag CORE_SKIP_CLASS_WITH_IGNORED_TEST to avoid running tests with CIgnored annotation.
    • if test fails due to knows defect then we should use COpenDefects annotation instead.
    • if deferred defect fixed then we should move it CDefects annotation and remove this from test.
    See Also:
    CDeferred, CDefects, CAwaiting, COpenDefects