使用 TestNG 注释进行测试
有人可以帮助我使用注释( org.testng.annotations.Test )测试 JAVA 类吗?我正在处理一个程序(由其他人编写),其中不使用 Junit 而是使用“org.testng.annotations.Test”。 testng.annotations.Test”的用法我不知道
Can some one please help me with the usage of testing a JAVA class using annotations ( org.testng.annotations.Test) ... I am dealing with a program (written by some1 else) in which Junit is not used instead "org.testng.annotations.Test" is used of which i have no idea
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您肯定会想在此处阅读 TestNG 的文档,因为它与 JUnit 存在一些差异。不过,有些注释是相似的。
以下是一些要点:
@BeforeSuite
、@BeforeClass
、@BeforeTest
标记将在测试套件、测试类之前运行的方法,以及分别在单独的测试方法之前(如您所料)。@Test
将方法注释为测试方法。这些与 JUnit 最相似。这些文档对其他文档有很好的解释。
You'll definitely want to read the documentation on TestNG here, as there are some differences from JUnit. Some of the annotations are similar, though.
Here are some highlights:
@BeforeSuite
,@BeforeClass
,@BeforeTest
mark methods that will run before a test suite, before a test class, and before an individual test method, respectively (as you might expect).@Test
annotates a method as being a test method.Those are the most similar to JUnit. The docs have a great explanation of the others.