Skip to content

Commit

Permalink
added unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
avneesh-akto committed Oct 17, 2023
1 parent d70f346 commit 6736ee9
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ public void testResolveExpression() {

result = VariableResolver.resolveExpression(varMap, "${var1}${var1}");
assertEquals("user1user1", result);

result = VariableResolver.resolveExpression(varMap, "akto");
assertEquals("akto", result);
}

}

0 comments on commit 6736ee9

Please sign in to comment.