Search code examples
fitnesse

Fitnesse - disable [?] create new page option in tables


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.


Solution

  • 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.