zentol commented on a change in pull request #18867:
URL: https://github.com/apache/flink/pull/18867#discussion_r811731170
##########
File path:
flink-architecture-tests/flink-architecture-tests-test/src/main/java/org/apache/flink/architecture/rules/ITCaseRules.java
##########
@@ -46,12 +46,13 @@
@ArchTest
public static final ArchRule INTEGRATION_TEST_ENDING_WITH_ITCASE =
freeze(
- javaClassesThat()
- .areAssignableTo(AbstractTestBase.class)
- .and()
- .doNotHaveModifier(ABSTRACT)
- .should()
- .haveSimpleNameEndingWith("ITCase"));
+ javaClassesThat()
+ .areAssignableTo(AbstractTestBase.class)
+ .and()
+ .doNotHaveModifier(ABSTRACT)
+ .should()
+ .haveSimpleNameEndingWith("ITCase"))
+ .as("Integration test should have name ending with
ITCase");
Review comment:
```suggestion
.as("Tests inheriting from AbstractTestBase should have
name ending with ITCase");
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]