作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我接触 JUnit 的第一天。我尝试使用参数进行测试。我有代码:
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import static org.junit.Assert.assertEquals;
@RunWith(JUnitParamsRunner.class)
public class MoneyParameterizedTest {
private static final Object[] getMoney() {
return new Object[] {
new Object[] {10, "USD"},
new Object[] {20, "EUR"}
};
}
@Test
@Parameterized.Parameters(method = "getMoney")
public void constructorShouldSetAmountAndCurrency(
int amount, String currency) {
Money money = new Money(amount, currency);
assertEquals(amount, money.getAmount());
assertEquals(currency, money.getCurrency());
}
}
最佳答案
JUnitParams
( licensed Apache 2.0 ) 是一个单独的库,这意味着它不随 JUnit 本身一起提供。这也意味着您需要确保它位于项目的类路径中。如果您使用的是 maven(或类似的东西),那么它很容易,您只需要将它作为依赖项添加到您的 pom 中,并确保 IJ 已获取更改(如果它在右上角):
<dependency>
<groupId>pl.pragmatists</groupId>
<artifactId>JUnitParams</artifactId>
<version>1.0.5</version>
<scope>test</scope>
</dependency>
Download ( JAR )
链接)和
library它到你的类路径。
Parameterized
与
JUnitParams
不是一回事,后者试图简化和改进编写参数化 JUnit 测试的方式。
Zohhak
的库这似乎比
JUnitParams
更灵活但它是在
LGPL 3.0
下发布的所以这取决于您的许可限制。
关于intellij-idea - 如何在 Java 类中导入 JunitParamsRunner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39366130/
我是一名优秀的程序员,十分优秀!