Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
chore(test): increase Parameter test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalen committed Nov 2, 2018
1 parent 56ee26e commit 9ea5831
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nodes/src/test/java/io/aexp/nodes/graphql/ParameterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,9 @@ public void parameterSetterTest() {
assertEquals(value, parameter.getValue());
}

@Test
public void parameterStringTest() {
Parameter<String> parameter = new Parameter<String>("key", "value");
assertEquals("Parameter{key='key', value=value}", parameter.toString());
}
}

0 comments on commit 9ea5831

Please sign in to comment.