![JAR search and dependency download from the Maven repository](/logo.png)
FitNesseRoot.Fitnesse.UserGuide.FitNesseWiki.MarkupLanguageReference.MarkupPreformatted.content.txt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartrics-RestFixture-LiveDoc Show documentation
Show all versions of smartrics-RestFixture-LiveDoc Show documentation
FitNesse tests documenting the RestFixture
If you want a stretch of text that should be left alone then you can enclose that text in three braces as follows:
!-{{{-!{{{Text to be left alone}}}!-}}}-!
Between the braces no wiki words will be identified, no markup syntax will be decoded. The text will be displayed in mono font exactly as it was typed. We use this technique a lot for showing samples of fixture code:
{{{
import fit.ColumnFixture;
public class AddRemovePlayerFixture extends ColumnFixture {
public String playerName;
private Game theGame;
public boolean addPlayer() {
theGame = StaticGame.getInstance();
Player thePlayer = theGame.addPlayer(playerName);
return theGame.playerIsPlaying(thePlayer);
}
public int countPlayers() {
return theGame.getNumberOfPlayers();
}
} }}}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy