Consider the following EO test:
# Test.
[] +> executes-objects
eq.
foo "x"
"foo x"
However, its not clear how to disable this test. I suggest the following syntax:
# Test.
# @todo #42:30min Enable this `executes-objects`...
# ...
[] !+> executes-objects
eq.
foo "x"
"foo x"
Here, !+> means disabled test attribute, which will be annotated with @Disabled during the Java transpilation (or can be skipped at all).
Consider the following EO test:
However, its not clear how to disable this test. I suggest the following syntax:
Here,
!+>means disabled test attribute, which will be annotated with@Disabledduring the Java transpilation (or can be skipped at all).