File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
src/test/java/de/rwth/idsg/steve Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 14
14
import org .junit .BeforeClass ;
15
15
import org .junit .Test ;
16
16
17
+ import javax .xml .ws .soap .SOAPFaultException ;
18
+
17
19
import static de .rwth .idsg .steve .utils .Helpers .getForOcpp12 ;
18
20
import static de .rwth .idsg .steve .utils .Helpers .getForOcpp15 ;
19
21
import static de .rwth .idsg .steve .utils .Helpers .getForOcpp16 ;
@@ -88,7 +90,10 @@ public void testOcpp15() {
88
90
Assert .assertEquals (ocpp .cs ._2012 ._06 .AuthorizationStatus .ACCEPTED , auth .getIdTagInfo ().getStatus ());
89
91
}
90
92
91
- @ Test
93
+ /**
94
+ * SOAPFaultException because we are sending an AuthorizeRequest from an random/unknown station.
95
+ */
96
+ @ Test (expected = SOAPFaultException .class )
92
97
public void testOcpp16 () {
93
98
ocpp .cs ._2015 ._10 .CentralSystemService client = getForOcpp16 (path );
94
99
You can’t perform that action at this time.
0 commit comments