Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
Mark failing strictness tests as TODOs (#102, #170)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Mar 31, 2022
1 parent 2bd779e commit 40ab054
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
* Tests Metafix script level methods.
*/
@ExtendWith(MockitoExtension.class)
@ExtendWith(MetafixToDo.Extension.class)
public class MetafixScriptTest {

private static final String MAP_NAME = "testMap";
Expand Down Expand Up @@ -429,6 +430,7 @@ private void assertStrictness(final Metafix.Strictness strictness, final boolean
}

@Test
@MetafixToDo("See https://github.com/metafacture/metafacture-fix/pull/170")
public void shouldSkipExpressionOnExecutionException() {
assertStrictness(Metafix.Strictness.EXPRESSION, true, o -> {
o.get().startRecord("1");
Expand All @@ -451,6 +453,7 @@ public void shouldSkipExpressionOnExecutionException() {
}

@Test
@MetafixToDo("See https://github.com/metafacture/metafacture-fix/pull/170")
public void shouldSkipRecordOnExecutionException() {
assertStrictness(Metafix.Strictness.RECORD, true, o -> {
o.get().startRecord("1");
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
See #170
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
See #170

0 comments on commit 40ab054

Please sign in to comment.