场景大纲:实体测试给定...何时...然后...
@test1
Examples:
| Entity |
| AAA1 |
| AAA1 |
@test2
Examples:
| Entity |
| BBB01 |
| BBB02 |
| BBB03 |
我有很多像上面这样的场景,它的先决条件是少数场景首先运行@test1 数据然后@test2。所以我得到了一个解决方案来隔离多个示例的数据拆分。
但是在创建 2 个示例之后,如果我将标签放在顶部,它会在示例 2“示例中缺少 EOF”之后立即在 eclipse 中给我错误,它会在示例 1 为“不匹配输入'@test1'期待”之前在标签顶部给我错误例子”
我已经浏览了 POM 中现有的答案和版本问题,我已经更新了版本。很少有帖子说它的 Eclipse IDE 问题,我无法更改 IDE,因为整个团队长期以来都使用相同的 IDE,并且对它感到满意,直到并且除非出现很大的问题。
以下内容应编写并执行,不会出现任何 eclipse IDE 错误或版本依赖错误
@test1
Examples:To run test 1 specific data
| Entity |
| AAA1 |
| AAA1 |
@test2
Examples: To run test 1 specific data
| Entity |
| BBB01 |
| BBB02 |
| BBB03 |
实际的:
@test1 //Error here -"mismatch input '@test1' expecting examples"
Examples:
| Entity |
| AAA1 |
| AAA1 |
@test2
Examples: //Error here if i remove tags -"missing EOF at examples"
| Entity |
| BBB01 |
| BBB02 |
| BBB03 |
慕侠2389804
慕桂英4014372
30秒到达战场
ibeautiful
慕斯709654
相关分类