0

尝试用 3 个场景测试以下方法。如果两个对象相等,则返回 zer0,如果“this”大于另一个对象,则返回正数,否则返回负数。

我是否为 3 个案例编写 3 个不同的测试?或者我可以在一个单一的测试方法中完成这一切吗?谢谢

public int compareTo(Vehicle v){

        if(this.getLengthInFeet() == ((Boat)v).getLengthInFeet()){
            return 0;
        }else if(this.getLengthInFeet() > ((Boat)v).getLengthInFeet()){
            return 10;
        }else{
            return -10;
        }

}
4

1 回答 1

2

看看@Parameterized。这将为您提供具有多个数据点的测试方法。以下是一个示例(未经测试):

@RunWith(Parameterized.class)
public class XxxTest {
    @Parameters
    public static Iterable<Object[]> data() {
        return Arrays.asList(new Object[][] {
           { 0, 10, 10 },
           { -10, 10, 20 },
        });
    }

    private final int expected;
    private final int thisFeet;
    private final int vFeet;

    public XxxTest(int expected, int thisFeet, int vFeet) {
        this.expected = expected;
        this.thisFeet = thisFeet;
        this.vFeet = vFeet;
    }

    @Test
    public void test() {
        Vehicle vThis = new Vehicle(thisFeet);
        Vehicle vThat = new Vehicle(vFeet);

        assertEquals(expected, vThis.compareTo(vThat));
    }

}
于 2013-08-07T15:29:19.837 回答