0

我将在我的工作中使用 TestNG,但它没有授权我从 - http://beust.com/eclipse/安装 testNG 插件 所以我下载了 testNG jar 并导入到 eclipse 但是脚本支持所有 testng 包和注释,但是当我运行脚本时,找不到运行配置 TestNG 插件,因此我无法通过 TestNG 运行脚本。

请帮我。

4

1 回答 1

0

首先删除您下载的testng,然后使用Eclipse 市场进行此类下载。你可以在这里找到它:help->eclipse marketplace 然后输入testngsearch and install TestNG for Eclipse

毕竟你需要创建像 testng.xml 这样的文件,它应该包括:

<suite name="Suite" parallel="none">
<parameter name="properties" value="Test.properties" />
<test name="Put your test name here">
    <classes>

        <class name="Put your class name here" />
        <methods></methods>
    </classes>

</test>

毕竟通过在 testng.xml 文件上的正确录音,您将能够以 TestNG Suite 的形式运行您的测试。

于 2016-02-17T11:53:50.917 回答