File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed
ocpp-v1_6/src/test/java/eu/chargetime/ocpp/model/test Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -75,23 +75,6 @@ public void setConnectorId_positiveInteger_connectorIdIsSet() throws Exception {
7575 assertThat (request .getConnectorId (), equalTo (someInteger ));
7676 }
7777
78- @ Test
79- public void setIdTag_nullValue_throwsPropertyConstraintException () {
80- // Given
81- IdToken nullValue = null ;
82-
83- try {
84- // When
85- request .setIdTag (nullValue );
86-
87- Assert .fail ("Expected PropertyConstraintException" );
88- } catch (PropertyConstraintException ex ) {
89- // Then
90- assertThat (ex .getFieldKey (), equalTo ("idTag" ));
91- assertThat (ex .getFieldValue (), equalTo (nullValue ));
92- }
93- }
94-
9578 @ Test
9679 public void setIdTag_someIdToken_idTagIsSet () throws Exception {
9780 // Given
You can’t perform that action at this time.
0 commit comments