是否可以使用 TestNG 实现以下设计模式?

发布于 2024-10-27 22:50:29 字数 828 浏览 0 评论 0原文

我正在测试套件中工作,目前正在尝试基于以下 xml 实现以下设计:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite" parallel="none">
    <parameter name="server" value="http://www.smartdate.com/"/>
      <test name="Test" preserve-order="false">
        <classes>
            <class name="testscripts.SetUp"/>
            <class name="testscripts.TestHome"/>
        </classes> 
  </test>
</suite>

在这个简短的示例中,我想要以下内容:

  1. 运行 SetUp 配置(此类仅定义 @BeforeSuite@AfterSuite 也可能是其他注释,如 @BeforeClass@AfterClass,这里没有 @Test 方法) 。
  2. 运行以下所有类,在本示例中仅运行一个“TestHome”,但保留以前的配置。

现在的问题是,这可能吗?

先感谢您, 纳韦尔

I'm working in a test suite and I'm currently trying to implement the following design based on the following xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite" parallel="none">
    <parameter name="server" value="http://www.smartdate.com/"/>
      <test name="Test" preserve-order="false">
        <classes>
            <class name="testscripts.SetUp"/>
            <class name="testscripts.TestHome"/>
        </classes> 
  </test>
</suite>

In this short example I want the following:

  1. Run SetUp configurations (this class only defines @BeforeSuite, @AfterSuite and may be other annotations like @BeforeClass, @AfterClass, no @Test methods here).
  2. Run all the following classes, in this example just one, "TestHome" but maintaining the previous configurations.

Now the question is, is this possible?

Thank you in advance,
Nahuel

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸里的快感 2024-11-03 22:50:29

那么,您尝试过您提出的设计吗?它应该有效。尝试一下,如果某些内容未按预期工作,请报告回来。

Well, have you tried your proposed design at all? It should work. Try it and report back if something is not working as expected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文