Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.rwth.idsg</groupId>
<artifactId>steve</artifactId>
<version>3.0.1</version>
<version>3.0.2</version>
<packaging>jar</packaging>

<organization>
Expand Down
1 change: 1 addition & 0 deletions src/test/java/de/rwth/idsg/steve/ApplicationJsonTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class ApplicationJsonTest {

@BeforeClass
public static void init() throws Exception {
Assert.assertEquals(ApplicationProfile.TEST, SteveConfiguration.CONFIG.getProfile());
__DatabasePreparer__.prepare();

app = new Application();
Expand Down
1 change: 1 addition & 0 deletions src/test/java/de/rwth/idsg/steve/ApplicationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public class ApplicationTest {

@BeforeClass
public static void init() throws Exception {
Assert.assertEquals(ApplicationProfile.TEST, SteveConfiguration.CONFIG.getProfile());
__DatabasePreparer__.prepare();

app = new Application();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ public class OperationalTestSoapOCPP16 {

@BeforeClass
public static void initClass() throws Exception {
Assert.assertEquals(ApplicationProfile.TEST, SteveConfiguration.CONFIG.getProfile());

app = new Application();
app.start();
}
Expand All @@ -81,6 +83,8 @@ public void destroy() throws Exception {

@Test
public void testUnregisteredCP() {
Assert.assertFalse(SteveConfiguration.CONFIG.getOcpp().isAutoRegisterUnknownStations());

CentralSystemService client = getForOcpp16(path);

BootNotificationResponse boot = client.bootNotification(
Expand Down