作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在testng中使用了同一个类的两种方法,但它不允许我这样......它给出了异常(exception)
org.testng.TestNGException: No free nodes found in:[DynamicGraph
<test name="User Data" preserve-order="true">
<classes>
<class name="LoginTest">
<methods>
<include name="Login" />
</methods>
</class>
<class name="xtr.chaut.test.PatientProfileTest">
<methods>
<include name="openPatientProfile"></include>
<include name="checkUserData"></include>
</methods>
</class>
<class name="xtr.chaut.test.Login">
<methods>
<include name="logout"></include>
</methods>
</class>
</classes>
最佳答案
似乎每个类只能在列表中声明一次,即使每个声明中包含不同的方法,否则您将看到此错误消息:( 使用最新的 TestNG 6.8.8。我能够使用 @ Test(priority=#) 与每个测试方法的特定优先级。见 http://testng.org/doc/documentation-main.html#annotations 。
我的用例:实体的 crud 测试。每个实体都有自己的测试类,有 4 个方法(所以我只能单独测试单个实体 CRUD),但我也想运行整个套件(由于完整性约束和不同生成的 ID key 会失败,除非它们在完全正确的顺序)。
同样的问题在 Getting org.testng.TestNGException: No free nodes found in:[DynamicGraph Exception 提出.
关于automation - org.testng.TestNGException : No free nodes found in:[DynamicGraph,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22784768/
我在testng中使用了同一个类的两种方法,但它不允许我这样......它给出了异常(exception) org.testng.TestNGException: No free nodes foun
我是一名优秀的程序员,十分优秀!