문제

I have test data that is Pascal Case.

|Verify Objects|
|Name|Value|InitialName |...|
|A   |B    |AlphaName[?]|...|

How do I remove the automatic [?] feature that is showing up for my test data? It is causing it to fail verification.

I tried spacing the words out, which stopped [?] but now the data is wrong. Surrounding the words in quotations also worked, but then the data is wrong as well.

도움이 되었습니까?

해결책

I was able to fix this problem by adding ! to the beginning of the fixture:

!|Verify Objects|
|Name|Value|InitialName |...|
|A   |B    |AlphaName[?]|...|

Found the answer in a discussion here.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top