我正在使用 cucumber 编写 bdd 测试,但在读取断言行时遇到问题。它没有读取我的功能文件中预期行开头的表格
这是我的断言:
lines.forEachIndexed { i, _ -> assertEquals(expectedLines[i], lines[i]) }
这是我的功能文件中导致错误的行(预期行):
| 335374655.87 Files to be generated compliant with SLA figures 0 |
这是错误:
org.junit.ComparisonFailure:
Expected :335374655.87 Files to be generated compliant with SLA figures 0
Actual : 335374655.87 Files to be generated compliant with SLA figures 0
请问有什么帮助吗?