如何在没有日食的情况下使用Junit测试

时间:2019-02-04 06:09:51

标签: eclipse junit

我已经在Junit中编写了一段代码。我需要运行它而不会蚀。有什么建议我该怎么做?

2 个答案:

答案 0 :(得分:0)

是的,您可以选择在命令行中运行测试用例

示例

在运行mvn全新安装以构建应用程序时, 同样,您也可以通过使用命令来运行测试用例。

it("should edit dropdown", () => {
    let country = element(by.id("country"));
    let state = element(by.id("state_select"));

    countryAndStateSelection('United States', 'Alaska');
    // add your expect here

    function countryAndStateSelection(countryToSelect, stateToSelect) {
        selectCountry(countryToSelect);
        selectState(stateToSelect);
    }       

    function selectCountry(countryToSelect) {
        country.click();
        element(by.cssContainingText('#country option'), countryToSelect).click();
    }

    function selectState(stateToSelect) {
        state.click();
        element(by.cssContainingText('#state_select option'), stateToSelect).click();
    }
});

答案 1 :(得分:0)

Java Application JUnit 启动配置中的Eclipse 2018-09起,就有一个按钮 Show Command Line < / em>

另请参阅:video that shows this feature in action