- priority: 5 --> 8
Search for documentation on this but found none coming from FitPro. I did find documentation on how to do this with Fit (search for "line break" at http://search.cpan.org/src/TJBYRNE/Test-C2FIT-0.01a/spec/input/parse.html\) by using <br \> in the HTML:
excerpt:
<tr>
<td>check</td>
<td>getOutput</td>
<td>
<p>Let's play chess!<br\></p>
</td>
</tr>
But the frame work still reports a failure due to the following println:
System.out.println("Let's play chess!");
Here is the entire .fit file:
<html>
<head>
<title></title>
</head>
<body>
<p>The Chess application should be able to start by executing the .exe and shut down when the user enters "exit".</p>
<p>More info on action fixtures, see <a href="http://fit.c2.com/wiki.cgi?ActionFixture">http://fit.c2.com/wiki.cgi?ActionFixture</a>. </p>
<p> You can click on "Source" in the footer-tab to do more fancy HTML if you desire. </p>
<p>
<table cellspacing="1" cellpadding="1" width="200" border="1">
<caption>
<p> </p>
<p> </p>
<h1>Start and stop chess game</h1>
<p> </p>
</caption>
<tbody>
<tr>
<td colspan="2">fit.ActionFixture</td>
</tr>
<tr>
<td>start</td>
<td>
<p>Fixtures.ChessApplicationFixture</p>
</td>
</tr>
<tr>
<td>check</td>
<td>getOutput</td>
<td>
<p>Let's play chess!<br\></p>
</td>
</tr>
<tr>
<td>enter</td>
<td>setInput</td>
<td>exit</td>
</tr>
<tr>
<td>check</td>
<td>getOutput</td>
<td>So long and thanks for the fish.</td>
</tr>
</tbody>
</table>
</p>
<p> </p>
<p> </p>
</body>
</html>