Skip to content

Commit

Permalink
feat(volodya-lombrozo#248): disabled test
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed Sep 10, 2024
1 parent 9fdf6fa commit 11928e7
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,31 @@ void checksCorrectNames(final String name) {
);
}

/**
* @todo #248:25min Enable passesOnPlural test when plural speech detection will
* be implemented in {@link RulePresentSimpleMl}. Let's test the following
* pattern: <PLURAL NOUN><PLURAL VERB>... .
*/
@Disabled
@CsvSource(
{
"theyBuildModel",
"theyPassTest",
"documentsDoGood"
}
)
@ParameterizedTest
void passesOnPlural(final String name) {
MatcherAssert.assertThat(
String.format("Name '%s' has to be correct", name),
new RulePresentSimpleMl(
RulePresentSimpleMlTest.model,
new TestCase.Fake(name)
).complaints(),
Matchers.empty()
);
}

@CsvSource({
"building",
"chicken",
Expand Down

0 comments on commit 11928e7

Please sign in to comment.