test: add CardService unit tests

This commit is contained in:
2026-02-24 13:58:44 +03:00
parent 37f2afcd2b
commit 34ed8780c6
4 changed files with 181 additions and 0 deletions

15
pom.xml
View File

@@ -76,6 +76,21 @@
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>