how do I use fitnesse ActionFixture with C#?

Posted by JDPeckham on Stack Overflow See other posts from Stack Overflow or by JDPeckham
Published on 2010-03-28T21:24:32Z Indexed on 2010/03/31 4:03 UTC
Read the original article Hit count: 565

Filed under:
|
|
|

I tried to make an action fixture and it’s not working. (c# with Slim runner)

Basically it seems like it's trying to interpret it as a column fixture.

|!-Fitnesse.BuyActions-! |

|Start|!-Fitnesse.BuyActions-!|

|check|total |0.0 |

|enter|price |12.00 |

|press|buy |

|check|total |12.00 |

|enter|price |100.00 |

|press|buy |

|check|total |112.00 |

Fitnesse.BuyActions

Start Fitnesse.BuyActions

check Method setStart not found in Fitnesse.BuyActions

using fit;

namespace Fitnesse

{

public class BuyActions : ActionFixture

{

    public BuyActions()

        : base()

    {

        this.targetObject = this;

    }



}

}

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET