File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/test/java/org/eolang/xax Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ SOFTWARE.
129129 <plugin >
130130 <groupId >com.qulice</groupId >
131131 <artifactId >qulice-maven-plugin</artifactId >
132- <version >0.22.1 </version >
132+ <version >0.23.0 </version >
133133 <configuration >
134134 <excludes combine.children=" append" >
135135 <exclude >checkstyle:/src/site/resources/.*</exclude >
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ final class XaxStoryTest {
4242 @ Test
4343 void printsItself () {
4444 MatcherAssert .assertThat (
45+ "passes with no exceptions" ,
4546 new XaxStory (
4647 new UncheckedText (
4748 new TextOf (
@@ -63,6 +64,7 @@ void printsItself() {
6364 @ ClasspathSource (value = "org/eolang/xax/packs" , glob = "**.yaml" )
6465 void validatesSimpleScenario (final String yaml ) {
6566 MatcherAssert .assertThat (
67+ "passes with no exceptions" ,
6668 new XaxStory (yaml ),
6769 Matchers .is (true )
6870 );
@@ -72,6 +74,7 @@ void validatesSimpleScenario(final String yaml) {
7274 @ ClasspathSource (value = "org/eolang/xax/broken" , glob = "**.yaml" )
7375 void validatesBrokenScenario (final String yaml ) {
7476 MatcherAssert .assertThat (
77+ "passes with no exceptions" ,
7578 new XaxStory (yaml ),
7679 Matchers .not (Matchers .is (true ))
7780 );
You can’t perform that action at this time.
0 commit comments