Skip to content

Commit

Permalink
bump query version in java and fix retry fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgoss committed Nov 14, 2024
1 parent 5d5f858 commit 1c162eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 47 deletions.
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>query</artifactId>
<version>[13.0.0,14.0.0)</version>
<version>[13.0.1,14.0.0)</version>
</dependency>

<dependency>
Expand Down
47 changes: 1 addition & 46 deletions testdata/retry.feature.xml
Original file line number Diff line number Diff line change
@@ -1,43 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="Cucumber" time="0.041" tests="10" skipped="0" failures="7" errors="0">
<testsuite name="Cucumber" time="0.041" tests="5" skipped="0" failures="2" errors="0">
<testcase classname="Retry" name="Test cases that pass aren't retried" time="0.003">
<system-out><![CDATA[
Given a step that always passes.............................................passed
]]></system-out>
</testcase>
<testcase classname="Retry" name="Test cases that fail are retried if within the --retry limit" time="0.003">
<failure type="Error" message="Exception in step">
<![CDATA[Exception in step
samples/retry/retry.feature:12]]>
</failure>
<system-out><![CDATA[
Given a step that passes the second time....................................failed
]]></system-out>
</testcase>
<testcase classname="Retry" name="Test cases that fail are retried if within the --retry limit" time="0.003">
<system-out><![CDATA[
Given a step that passes the second time....................................passed
]]></system-out>
</testcase>
<testcase classname="Retry" name="Test cases that fail will continue to retry up to the --retry limit" time="0.003">
<failure type="Error" message="Exception in step">
<![CDATA[Exception in step
samples/retry/retry.feature:15]]>
</failure>
<system-out><![CDATA[
Given a step that passes the third time.....................................failed
]]></system-out>
</testcase>
<testcase classname="Retry" name="Test cases that fail will continue to retry up to the --retry limit" time="0.003">
<failure type="Error" message="Exception in step">
<![CDATA[Exception in step
samples/retry/retry.feature:15]]>
</failure>
<system-out><![CDATA[
Given a step that passes the third time.....................................failed
]]></system-out>
</testcase>
<testcase classname="Retry" name="Test cases that fail will continue to retry up to the --retry limit" time="0.003">
<system-out><![CDATA[
Given a step that passes the third time.....................................passed
]]></system-out>
Expand All @@ -51,24 +24,6 @@ samples/retry/retry.feature:18]]>
Given a step that always fails..............................................failed
]]></system-out>
</testcase>
<testcase classname="Retry" name="Test cases won't retry after failing more than the --retry limit" time="0.003">
<failure type="Error" message="Exception in step">
<![CDATA[Exception in step
samples/retry/retry.feature:18]]>
</failure>
<system-out><![CDATA[
Given a step that always fails..............................................failed
]]></system-out>
</testcase>
<testcase classname="Retry" name="Test cases won't retry after failing more than the --retry limit" time="0.003">
<failure type="Error" message="Exception in step">
<![CDATA[Exception in step
samples/retry/retry.feature:18]]>
</failure>
<system-out><![CDATA[
Given a step that always fails..............................................failed
]]></system-out>
</testcase>
<testcase classname="Retry" name="Test cases won't retry when the status is UNDEFINED" time="0.003">
<failure/>
<system-out><![CDATA[
Expand Down

0 comments on commit 1c162eb

Please sign in to comment.