Skip to content

Commit

Permalink
test: add tests for categories
Browse files Browse the repository at this point in the history
  • Loading branch information
fembau committed Sep 25, 2023
1 parent de4201a commit 5ac0b9b
Show file tree
Hide file tree
Showing 4 changed files with 350 additions and 66 deletions.
18 changes: 14 additions & 4 deletions backend-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ SPDX-License-Identifier: Apache-2.0
-->

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>nl.research-software</groupId>
Expand Down Expand Up @@ -38,7 +38,8 @@ SPDX-License-Identifier: Apache-2.0
<version>3.1.0</version>
</plugin>

<!-- https://mvnrepository.com/artifact/org.apache.maven.surefire/surefire-junit-platform -->
<!--
https://mvnrepository.com/artifact/org.apache.maven.surefire/surefire-junit-platform -->
<plugin>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit-platform</artifactId>
Expand All @@ -62,6 +63,15 @@ SPDX-License-Identifier: Apache-2.0
</build>

<dependencies>

<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<scope>test</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
<dependency>
<groupId>com.auth0</groupId>
Expand All @@ -86,4 +96,4 @@ SPDX-License-Identifier: Apache-2.0
</dependency>
</dependencies>

</project>
</project>
Loading

0 comments on commit 5ac0b9b

Please sign in to comment.