Skip to content

Commit

Permalink
openhab#15 Add libraries for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
magx2 committed May 15, 2019
1 parent f5002ca commit 5a47bc4
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions bundles/org.openhab.binding.supla/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,43 @@
<artifactId>guava</artifactId>
<version>21.0</version>
</dependency>

<!-- TEST -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.4.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.4.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.23.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>2.23.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.glytching</groupId>
<artifactId>junit-extensions</artifactId>
<version>2.3.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 5a47bc4

Please sign in to comment.