我認爲,你可以使用JUnit4的新特性。
編寫執行@Before和@After每次規則: JUnit Kungfu slide 34
寫,計算結果的參數測試: JUnit Kungfu slide 23
如果使用電子表格的工作,你可以填入值電子表格像 電流值;預期分鐘;預計-MAX
import static org.hamcrest.MatcherAssert.*;
import static org.hamcrest.Matchers.*;
import static org.junit.matchers.JUnitMatchers.*;
import java.util.Arrays;
import java.util.Collection;
import org.hamcrest.Matchers;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class ParameterizedTest {
private final int min;
private final int max;
private final int current;
@Parameters
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {
{ -1 , -10, -6 },
{ -2 , -11, -7 },
{ -3 , -12, -8 },
{ -4 , -13, -9 },
{ -5 , -14, -10 }
});
}
public ParameterizedTest(int current, int expectedMin, int expectedMax) {
this.current = current;
this.min = expectedMin;
this.max = expectedMax;
}
@Test
public void testName() throws Exception {
int yourNewValue = YourNormalizer.normalize(current);
assertThat(yourNewValue, both(greaterThan(min)).and(lessThanOrEqualTo(max)));
}
}
我不知道任何其他方式來測試DAT一個。 HF
這似乎是一種很好的導入數據的方式。但是測試仍然會導致成功或失敗。 – ubershmekel