我应该用哪种方式在Intellij IDEA中进行单元测试?

时间:2017-05-04 09:19:24

标签: java unit-testing intellij-idea junit

我读过Configuring IntelliJ IDEA for unit testing with JUnit,但它无法解决我的问题。这就是我的问题。

我使用IntelliJ IDEA进行Spring Boot Project,现在我想做一些单元测试。首先,我在我的pom文件中添加了junit依赖。

<dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
    </dependency>

下一步,我安装了JunitGenerator V2.0插件。 然后,似乎有两种方法可以选择生成测试文件。其中一种方法是在类文件中使用Alt + Insert并选择Junit Test生成测试文件。另一种方法是使用Ctrl + Shift + T或Alt + Enter生成测试文件。

我的问题是,它们之间有什么不同?我应该选择哪种方式?

0 个答案:

没有答案