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
2
votes
2 answers

why are my test pages being ignored?

I have followed a couple of different tutorials for setting up a simple slim fitnesse environment with .NET. I have attempted this with both fitsharp and netrunner but both end up in my test page being ignore. Everything imports fine and even…
user4598978
2
votes
2 answers

FitNesse/Slim String Operators

Is it possible to express this in a Query Table in FitNesse with SLIM for .net: contains(data) startswith(data) endswith(data) I know from a previous question it was possible for FitNesse/Fit with cell handler loader. I'm looking for the equivalent…
grootjans
  • 592
  • 1
  • 6
  • 17
2
votes
2 answers

How to transfer data between several test tables using java objects and Fitnesse?

Currently I'm learning FitNesse. I have two different test tables in one test page and want to Add/Remove quantities in my "InventoryFixture" tables. My problem is that I can't get the value of the quantity from "InventoryFixture" table using…
Gilana
  • 111
  • 12
2
votes
2 answers

Does fitnesse have ability to run one test several times with different parameters

I want to run the same test with different parameters, like @Parameterized.Parameters in junit. Does fitnesse have ability to do this?
2
votes
1 answer

Killing FitNesse from within a fixture

I'm using FitNesse to do some testing with Fixtures written in C#. One of my fixtures kicks off some testing suites to run in Ab Initio in a Unix environment. I would like to be able to kill the whole test suite if one of the tests within it fail.…
intA
  • 2,513
  • 12
  • 41
  • 66
2
votes
1 answer

store query table output in variable

How can I store query output in a variable? I have following query table: |Query:SomeQueryClass| |ObjId|ObjValue| |someId|| I tried following: |Query:SomeQueryClass| |ObjId|ObjValue| |someId|$value=| However test fails and I…
michael nesterenko
  • 14,222
  • 25
  • 114
  • 182
2
votes
1 answer

FitNesse Slim: Passing varargs in script table

Right now I am running the java version of FitNesse 20130530. I would like to have a method in my fixture that have variable arguments, like: public class VarArgTester { public void testVarargs(Object... newData) { [...] } } and to call…
D. Josefsson
  • 1,052
  • 7
  • 21
2
votes
1 answer

Is it possible to execute tests in parallel with Slim engine?

I use FitNesse with the SLIM engine to execute my tests. Since the test suites have since become quite large I have to start thinking about parallelization. Is it possible with FitNesse to execute tests in parallel? I know that the tests can be…
Valentin
  • 7,874
  • 5
  • 33
  • 38
1
vote
1 answer

FitNesse SliM Runner cannot find Enterprise Library assemblies

I am using the SliM runner for FitNesse testing of our .Net 4.0 project. Everything was going smoothly until we added the Enterprise Library logger. We are configuring the Unity container for the logger from configuration. When the configuration is…
Ben Rice
  • 85
  • 7
1
vote
0 answers

SqlException during SliM testing a transactional method on spring application

When running Fitnesse SliM test a transactional method on spring application, a SQLException thrown - Data Source is Closed. Here is what happends: In my application, method importFile(String filename) reads a csv file and update data to a few…
Redd Qian
  • 33
  • 1
  • 5
1
vote
2 answers

How to make a FitNesse test require explicit running

Is there a way to mark a fitnesse test such that it will not be run as part of a suite, but it can still be run manually? We have our FitNesse tests running as part of our continuous integration, so new tests that are not yet implemented cause the…
Niall Connaughton
  • 15,518
  • 10
  • 52
  • 48
1
vote
0 answers

Is there a way to convert slim fixture fitnesse test scripts to karate test scripts?

We have a lot of test scripts written in fitnesse using SLIM fistures. Now we want to adopt karate framework. Is there a way to migrate easily those test scripts to karate test scripts? That would reduce a lot of effort. Example of a Slim fixture…
Sanhita
  • 21
  • 2
1
vote
0 answers

What determines the fitSharp runner Domain name?

Why adding the ‘-a’ parameter (pointing to the TestLib.dll.config file) in the COMMAND_PATTERN, changes the AppDomain.CurrentDomain.FriendlyName value from Runner.exe to fitSharp.Machine? Here are the root page variables I used: !define TEST_SYSTEM…
bustoka
  • 11
  • 2
1
vote
2 answers

Can't create new page

I tried doing url.NewPageName (http://localhost:3434/root.MyNewPage) I get The requested resource: FrontPage.mynewpage was not found. I also tried the [add child] linkwhich gives a popup, and here I get Invalid Child Name. How can I do this?
Omu
  • 69,856
  • 92
  • 277
  • 407
1
vote
1 answer

FitSharp is not able to find .DLLs in other folders

I'm getting System.IO.FileNotFoundException trying to test my application. My Folder hierarchy is as follow: I have my fitSharp folder with the Runner.exe and the .dll's The system under test is in my debug folder i have a reference to this .dll…
1
2
3
11 12