, так как я новичок в Junit 5, и я прочитал, что они теперь отдельно от jar 5, так что мне нужно прикрепить?
Я смотрел на репозиторий maven и обнаружил, что существует много зависимостей для junit 5, и я не знаю, что мне следует включить для запуска тестов Junit 4 в Junit 5, и что отдельно для Junit 5?
У меня еще нет кода, но мне нужны только зависимости, чтобы понять, что я
нужно скачать
и что делает верный огонь для всего этого?
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.0.0-M4</version>
</dependency>
обновление - так что наверняка для поиска недостающих зависимостей,
для чего нужен
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.4.0-M1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>1.4.0-M1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite-api</artifactId>
<version>1.4.0-M1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.3.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.4.0-M1</version>
<scope>test</scope>
</dependency>