File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed
src/test/java/de/rwth/idsg/steve Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >de.rwth.idsg</groupId >
5
5
<artifactId >steve</artifactId >
6
- <version >3.0.1 </version >
6
+ <version >3.0.2 </version >
7
7
<packaging >jar</packaging >
8
8
9
9
<organization >
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ public class ApplicationJsonTest {
34
34
35
35
@ BeforeClass
36
36
public static void init () throws Exception {
37
+ Assert .assertEquals (ApplicationProfile .TEST , SteveConfiguration .CONFIG .getProfile ());
37
38
__DatabasePreparer__ .prepare ();
38
39
39
40
app = new Application ();
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ public class ApplicationTest {
35
35
36
36
@ BeforeClass
37
37
public static void init () throws Exception {
38
+ Assert .assertEquals (ApplicationProfile .TEST , SteveConfiguration .CONFIG .getProfile ());
38
39
__DatabasePreparer__ .prepare ();
39
40
40
41
app = new Application ();
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ public class OperationalTestSoapOCPP16 {
60
60
61
61
@ BeforeClass
62
62
public static void initClass () throws Exception {
63
+ Assert .assertEquals (ApplicationProfile .TEST , SteveConfiguration .CONFIG .getProfile ());
64
+
63
65
app = new Application ();
64
66
app .start ();
65
67
}
@@ -81,6 +83,8 @@ public void destroy() throws Exception {
81
83
82
84
@ Test
83
85
public void testUnregisteredCP () {
86
+ Assert .assertFalse (SteveConfiguration .CONFIG .getOcpp ().isAutoRegisterUnknownStations ());
87
+
84
88
CentralSystemService client = getForOcpp16 (path );
85
89
86
90
BootNotificationResponse boot = client .bootNotification (
You can’t perform that action at this time.
0 commit comments