Skip to content

Commit 835aea5

Browse files
committed
#33 qulice up
1 parent cd4db8e commit 835aea5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

src/test/java/org/eolang/xax/XaxStoryTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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
);

0 commit comments

Comments
 (0)