Questions tagged [fitnesse-slim]

The SLIM test system of the FitNesse test framework

The SLIM test system provides an acceptance test authoring and execution framework. It is one of two test systems supported by the FitNesse test framework - the other is the original Fit test system. See http://fitnesse.org/FitNesse.UserGuide.SliM

170 questions
0
votes
1 answer

Could not complete testing: fitnesse.slim.SlimError: Error SLiM server died before Header Message could be read

I am trying to integrate Fitness with Visual Studio 2022. Have .NET 6.0 installed. Following the instructions given in this link. However, every time I run the Test it throws the error Could not complete testing: fitnesse.slim.SlimError: Error SLiM…
0
votes
1 answer

Fitnesse wiki file persistence options

What are the persistence options for fitnesse files? So far it seems like a file system is the only thing supported. There does appear to be an out of date database plugin. Is there anything else that is supported (S3, database, etc.)? Is there a…
Albert
  • 420
  • 1
  • 6
  • 17
0
votes
1 answer

Fitnesse Ignore result of method

I am trying to run this fixture code: |script |Browser Test | |open |https://jsfiddle.net/ygjL7hnm/3/show| |click |Run this fiddle | |click if available|id=test …
0
votes
1 answer

How to run multiple fitness suites at once?

Is it possible to run multiple fitness suite tests at once? I am aware of the -Dslim.port option and setting this value to 0. Then fitness will supposedly choose an available port. However, I wasn't able to see this in action. I've always ran into…
Albert
  • 420
  • 1
  • 6
  • 17
0
votes
0 answers

FitNesse use global variables to load included pages

was wondering if it is possible to allow global variables like ${PAGE_NAME} be a part of an include? We have different teams using different feature environments (and more environments coming up) which uses symlinks and includes to environment setup…
Gertray
  • 25
  • 7
0
votes
1 answer

Fitnesse Slim runner cannot load .net 5 assembly: Error extracting manifest import from file (hr = 0x80131018)

Running a test in Fitnesse gives: Could not complete testing: fitnesse.slim.SlimError: Error SLiM server died before Header Message could be read. When using Slim RunnerW.exe to debug my test I get an exception: System.BadImageFormatException:…
Louis Somers
  • 2,560
  • 3
  • 27
  • 57
0
votes
1 answer

Thread safety of Fitnesse Tool with Java

I am new to Fitnesse testing Tool. I was wondering what level of thread safety we need to provide for my fixture classes. public class SampleModel { String code; String value; Integer index; Map mapTest = new…
Alex
  • 33
  • 1
  • 6
0
votes
1 answer

FitNesse not invoking overloading method

I made a wrapper class MyClassFixture for a pojo MyClass by extending it, to made the initialization of its fields more user friendly. Eg. I want to use my own date format on wiki pages, and parse that date in the overloading setters. So instead of…
krivo
  • 46
  • 5
0
votes
1 answer

Fitnesse How to acces _root.wiki content in Java

Pretty new to Fitnesse I am trying to figure out how to acces the _root.wiki (where we have all our database properties set) from my java code fixture extended with SlimFixture. What I tried so far: Tried to set a symbol in the fixture.wiki, but I…
furion2000
  • 79
  • 7
0
votes
1 answer

Setting up Fitnesse with DotNet Core

I am trying to test out FitNesse with .Net Core, I have created a test fixture and added the nuget package for FitSharp. using fit; namespace TestFitnesse { public class MyAcceptanceTests : ColumnFixture { public string…
Peter Campbell
  • 661
  • 1
  • 7
  • 35
0
votes
1 answer

Can FitNesse page tags be used in page?

Is there a way in FitNesse to access page tags from inside the page? I need to change database connection strings at test start-up and would like to use a tag as a switch.
Matumba
  • 196
  • 3
  • 10
0
votes
1 answer

Fitnesse assign value to global variable and reuse in multiple Fixtures

Hi I am new to Fitnesse framework, and I'm trying to find a way where I can assign a value to a global variable somehow from a database sequence. I already have written few test cases using a variable on page but its value had to be changed manually…
harshad
  • 25
  • 1
  • 7
0
votes
0 answers

Fitnesse test page throwing an exception

I'm running Fitnesse testing tool via Jenkins. Jenkins runs fitnesse after fixed interval. Following is the test page:-Fitnesse Test Page 1.creating script file 2. running it In this, I'm simply printing message but this test page sometimes thrown…
0
votes
1 answer

Fitnesse : how to check if path exist

In a newly created wiki in Fitnesse. Say we defined a path: !path /home/user/mypath Is there a way to verify that the path exist? or list the contents of the directory?
mtleis
  • 712
  • 1
  • 9
  • 28
0
votes
1 answer

Can Groovy classes be used as FitNesse fixtures

I am learning the FitNesse framework and wondering if fixture code can be written in Groovy. So I made a copy of an example Decision Table, renamed the original class as ShouldIBuyMilkJava and created a Groovy class with same functionality. So my…