-1

我想ErrorCollector在 jUnit 中使用类,但无法导入其所需的类。我想导入org.junit.rule.*,但我没有导入选项import sun.org.mozilla.javascript.internal.ast.ErrorCollector。我不明白发生了什么。我没有任何导入 Rule 类的选项,我尝试输入import org.junit.rule但未成功导入。请帮助或解释我是怎么回事?

谢谢。

package testcases;

import junit.framework.Assert;
import org.junit.Test;
//import sun.org.mozilla.javascript.internal.ast.ErrorCollector;

public class understandingAssertion {

    @Rule
    public ErrorCollector er = new ErrorCollector();

    @Test
    public void countFriendTest() {
        int actual_fr = 100; //Selenium
        int expected_Fr =10;

        /*
        if (actual_fr == expected_Fr) {
            System.out.println("Pass");
        } else {
            System.out.println("Fail");
        }
        */

        System.out.println("A");
        try
        {
            Assert.assertEquals(expected_Fr, actual_fr);
        }
        catch(Throwable e)
        {
            System.out.println("Error encountered");
        }
    }
}
4

1 回答 1

0

您的 IDE 可能只会让您选择导入类路径中存在的类。

将 jar 添加到您的类路径中,您将能够正确导入该类。

于 2014-01-10T21:31:02.793 回答