About
Installation of fitnesse
Articles Related
Steps
Files
- Download the standalone jar
- Place it in a home directory (Example: C:\fitnesse)
- Create a shell script to start it. Example in DOS (for all cli option, see Fitnesse - Command line):
@echo off
SET SCRIPT_PATH=%~dp0
SET CURRENT_WK=%cd%
cd /D %SCRIPT_PATH%
start java -jar fitnesse-standalone.jar -d %SCRIPT_PATH% -p 8001
cd /D %CURRENT_WK%
- Add the fitnesse Home (C:\fitnesse) to the OS path environment variable
- Start it
fitnesse
Sep 19, 2018 11:10:36 AM fitnesse.ConfigurationParameter loadProperties
INFO: No configuration file found (C:\fitnesse\plugins.properties)
Bootstrapping FitNesse, the fully integrated standalone wiki and acceptance testing framework.
root page: fitnesse.wiki.fs.FileSystemPage at .\FitNesseRoot#latest
logger: none
authenticator: fitnesse.authentication.PromiscuousAuthenticator
page factory: fitnesse.html.template.PageFactory
page theme: bootstrap
Starting FitNesse on port: 8001
Port
- In a fitnesse page, you can get the port with the following code
FitNesse is running on port: ${FITNESSE_PORT}
- And you can define the slim port
Use a non-default port number, so SLIM tests systems can be run as well:
!define SLIM_PORT {1}