Skip to content

Commit

Permalink
Merge pull request #12 from RWTH-i5-IDSG/master
Browse files Browse the repository at this point in the history
merge
  • Loading branch information
JavaIsJavaScript authored Apr 20, 2018
2 parents ad4770d + 4bec150 commit 2505f28
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
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

0 comments on commit 2505f28

Please sign in to comment.