简体   繁体   中英

Scala unit test in a maven project with IntelliJ

I have a scala project with maven as build tool, and I am using IntelliJ IDE.

What is the ideal folder structure for tests in this case? And what testing library should I use?

What is the ideal folder structure for tests in this case?

In this documentation , checkout this section - Explaining this Archetype It tells you the ideal folder structure for tests.

what testing library should I use?

I think scalatest is a great testing tool for scala. You can add the following dependency in your pom.xml or checkout this link .

<!-- https://mvnrepository.com/artifact/org.scalatest/scalatest -->
<dependency>
    <groupId>org.scalatest</groupId>
    <artifactId>scalatest_2.13</artifactId>
    <version>3.1.1</version>
    <scope>test</scope>
</dependency>

Let me know if it helps!!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM