Обновил junit и добавил тест на добавление элементов

This commit is contained in:
2025-02-03 17:37:34 +03:00
parent a87c13dc42
commit 65f7586e24
2 changed files with 27 additions and 35 deletions

View File

@@ -9,10 +9,15 @@
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.1</version>
</dependency>
</dependencies>
<build>