Skip to content

Commit

Permalink
BasicNodeSelectorExpressionEvaluationContextTest.testEvaluateExpressi…
Browse files Browse the repository at this point in the history
…onXXX was testEvaluateXXX
  • Loading branch information
mP1 committed Jan 12, 2025
1 parent ce44840 commit 05124c8
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,24 +74,24 @@ public void testConvert() {
}

@Test
public void testEvaluateTrue() {
this.evaluateAndCheck2(true);
public void testEvaluateExpressionTrue() {
this.evaluateExpressionAndCheck2(true);
}

@Test
public void testEvaluateFalse() {
this.evaluateAndCheck2(false);
public void testEvaluateExpressionFalse() {
this.evaluateExpressionAndCheck2(false);
}

private void evaluateAndCheck2(final boolean value) {
private void evaluateExpressionAndCheck2(final boolean value) {
this.evaluateExpressionAndCheck(
Expression.value(value),
value
);
}

@Test
public void testEvaluateString() {
public void testEvaluateExpressionString() {
final String value = "abc123";
this.evaluateExpressionAndCheck(
Expression.value(value),
Expand Down

0 comments on commit 05124c8

Please sign in to comment.