本文整理了Java中org.mozilla.zest.core.v1.ZestExpressionLength.getApprox()
方法的一些代码示例,展示了ZestExpressionLength.getApprox()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZestExpressionLength.getApprox()
方法的具体详情如下:
包路径:org.mozilla.zest.core.v1.ZestExpressionLength
类名称:ZestExpressionLength
方法名:getApprox
[英]Gets the approx.
[中]获取近似值。
代码示例来源:origin: mozilla/zest
@Test
public void testGetApprox() {
int len = 10;
int approx = 20;
ZestExpressionLength length = new ZestExpressionLength("response.body", len, approx);
assertTrue(approx == length.getApprox());
}
代码示例来源:origin: mozilla/zest
+ lengthExpr.getLength()
+ " approx: "
+ lengthExpr.getApprox());
} else if (element instanceof ZestExpressionEquals) {
ZestExpressionEquals eqExpr = (ZestExpressionEquals) element;
代码示例来源:origin: mozilla/zest
@Test
public void testSetApprox() {
int approx = 10;
ZestExpressionLength length = new ZestExpressionLength();
length.setApprox(approx);
assertTrue(approx == length.getApprox());
}
代码示例来源:origin: mozilla/zest
@Test
public void testDeepCopySameParams() {
int len = 10;
int approx = 20;
ZestExpressionLength length = new ZestExpressionLength("response.body", len, approx);
ZestExpressionLength copy = length.deepCopy();
assertTrue(copy.getLength() == len && copy.getApprox() == approx);
}
代码示例来源:origin: mozilla/zest
@Test
public void testDeepCopy() {
ZestExpressionLength length = new ZestExpressionLength("var", 100, 5, true);
ZestExpressionLength copy = length.deepCopy();
assertEquals(copy.getVariableName(), length.getVariableName());
assertEquals(copy.getLength(), length.getLength());
assertEquals(copy.getApprox(), length.getApprox());
assertEquals(copy.isInverse(), length.isInverse());
}
内容来源于网络,如有侵权,请联系作者删除!