Package org.hibernate.testing.orm.junit
Annotation Type NotImplementedYet
-
@Inherited @Target({TYPE,METHOD}) @Retention(RUNTIME) @ExtendWith(NotImplementedYetExtension.class) public @interface NotImplementedYet
Indicates that the test tests functionality that has not been implemented yet.- See Also:
NotImplementedYetExtension
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description String
expectedVersion
A version expectation by when this feature is supposed to become implementedString
reason
A reason why the failure is expectedboolean
strict
Generally this handles tests failing due toNotImplementedYetException
exceptions being thrown (strict).
-
-
-
Element Detail
-
reason
String reason
A reason why the failure is expected- Default:
- ""
-
-
-
expectedVersion
String expectedVersion
A version expectation by when this feature is supposed to become implemented- Default:
- ""
-
-
-
strict
boolean strict
Generally this handles tests failing due toNotImplementedYetException
exceptions being thrown (strict). Setting this to false allows it to handle failure for any reason.- Default:
- true
-
-