test: add unit tests for multithreading scenarios

This commit is contained in:
2026-06-04 21:00:09 +03:30
parent 6d8bee27f1
commit 73395fa188
10 changed files with 281 additions and 3 deletions
+19
View File
@@ -14,4 +14,23 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.12.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.3</version>
</plugin>
</plugins>
</build>
</project>