-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed as not planned
Description
Sometimes, multiple @Disabled can help developers.
@Disabled("yyyy-MM-dd fails for <some reason>, maybe resolved")
@Disabled("yyyy-MM-dd fails for <some other reason>, maybe also resolved")
void testSome() {
}Someone can say, the text block can help but, modifying the multi-line text may produce some error or unwanted result.
@Disabled("""
yyyy-MM-dd fails for some reason, maybe resolved
yyyy-MM-dd fails for some other reason, maybe also resolved"""
)
void testSome() {
}Deliverables
- Make
@Disabledrepeatable.