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 running RunnerW.exe provides nothing. I have checked numerous times and all of my paths are correct. In the end, when running the test, all I get are what is displayed in the screenshots below. I have been struggling with this for a few hours now so any help would be greatly appreciated.
NetRunner:
Result: http://screencast.com/t/mBdkCyGow
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NetRunner;
using NetRunner.ExternalLibrary;
class Employee : BaseTestContainer
{
private string firstName;
private string lastName;
private string number;
public Employee() { }
public Employee(string firstName, string lastName, string number)
{
this.firstName = firstName;
this.lastName = lastName;
this.number = number;
}
public string FirstName
{
get { return firstName; }
set { firstName = value; }
}
public string LastName
{
get { return lastName; }
set { lastName = value; }
}
public string Name
{
get { return firstName + " " + lastName; }
}
public string Number
{
get { return number; }
set { number = value; }
}
}
Fitsharp:
Result: http://screencast.com/t/GMqdgwxA6
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using fit;
class Employee : ColumnFixture
{
private string firstName;
private string lastName;
private string number;
public Employee() { }
public Employee(string firstName, string lastName, string number)
{
this.firstName = firstName;
this.lastName = lastName;
this.number = number;
}
public string FirstName
{
get { return firstName; }
set { firstName = value; }
}
public string LastName
{
get { return lastName; }
set { lastName = value; }
}
public string Name
{
get { return firstName + " " + lastName; }
}
public string Number
{
get { return number; }
set { number = value; }
}
}