Tagged Questions

13
votes
9answers
893 views

Testing Finite State Machines

I have inherited a large and firaly complex state machine at work. It has 31 possbile states to be in. It has the following inputs: Enum: Current State (so 0 -> 30) Enum: source (currently only 2 ...
7
votes
1answer
113 views

MSpec on Appharbor

It it possible to execute mspec tests on appharbor aside from adding build action ?
5
votes
4answers
260 views

How to effectively test a fixed length flat file parser using MSpec?

I have this method signature: List<ITMData> Parse(string[] lines) ITMData has 35 properties. How would you effectively test such a parser? Questions: Should I load the whole file (May I use ...
4
votes
2answers
148 views

How do I write generic tests for all implementations of an interface with MSpec?

I have an interface IAudioProcessor with a single method IEnumerable<Sample> Process(IEnumerable<Sample> samples). While it is not a requirement of the interface itself, I want to make ...
4
votes
2answers
964 views

MSpec documentation (wiki, tutorial)?

Just discovered MSpec, and want to try it out. However, I can't find any detailed docs on it, except for a few quick tutorials - do they exist ? Thanks !
3
votes
2answers
916 views

MSTest/NUnit Writing BDD style “Given, When, Then” tests

I have been using MSpec to write my unit tests and really prefer the BDD style, I think it's a lot more readable. I'm now using Silverlight which MSpec doesn't support so I'm having to use MSTest but ...
3
votes
2answers
148 views

How to develop input object with TDD / BDD?

I have a method called ProcessPayment() that I'm developing via BDD and mspec. I need help with a new challenge. My user story says: Given a payment processing context, When payment is processed with ...
3
votes
1answer
185 views

Machine.Specifications and Entity Framework Examples

I'm trying to find some best-practice examples (or any examples, actually) of using Machine.Specifications with the ASP.Net Entity Framework in an MVC project. Not having had much experience with ...
2
votes
2answers
50 views

MSpec: How to make static variables thread-safe?

I'm using MSpec for my latest project, and overall I'm really happy with it. However, I do have an issue with concurrency when my tests run in paralel and I'm wondering if anybody has run into this ...
2
votes
3answers
182 views

How to test HTTP status code set by an ASP.NET MVC action with MSpec

I have the following controller: public sealed class SomeController : Controller { public ActionResult PageNotFound() { Response.StatusCode = 404; return View("404"); } } ...
2
votes
1answer
312 views

When using a mocking framework and MSPEC where do you set your stubs

I am relatively new to using MSpec and as I write more and more tests it becomes obvious to reduce duplication you often have to use a base class for your setup as per Rob Conery's article I am happy ...
1
vote
1answer
79 views

Why won't MSpec integrate with ReSharper 6?

I'm having trouble with getting MSpec to work with ReSharper 6. I've just installed MSpec from the NuGet package: Next, I've quit from Visual Studio, opened an elevated command prompt and run the ...
1
vote
2answers
56 views

Is it possible to use MSpec to test .net micro-framework projects?

I'd like to be able to use MSpec or another BDD/TDD framework to test code targeted at the .net micro framework. Unfortunately referencing a MF (micro-framework) assembly isn't possible from a non-MF ...
1
vote
1answer
64 views

Does MSpec produce a TRX result file after running tests?

Does MSpec produce a TRX result file after running tests? If not, can it? The tests are being run with ReSharper.
1
vote
3answers
124 views

How do I create a an instance of a type with a private constructor for unit testing?

I need to unit test an event handler that responds to the SerialDataReceived event of System.IO.Ports.SerialPort. This event handler has the signature void SerialDataReceived(object sender, ...
1
vote
2answers
137 views

Unit testing against repositories, with MSpec, am I doing this right?

A second MSpec question from me in a day, this is a new record. I'm trying to get smart on MSpec very quickly and I've run into some old problems I've always had with MSpec. Scenario: I have a ...
1
vote
2answers
95 views

How to output a message with an It assertion in MSpec

We're using MSpec for unit tests after having previously used MbUnit. I'm used to being able to say Assert.IsTrue(status, "Status should be true"); in MbUnit, i.e. adding a message to the ...
1
vote
1answer
398 views

How to BDD with GWT using MSpec? The correct way to write this scenario

I'm just starting to practice BDD using the GWT approach to the following code exert and just realised that I can't do the second test. My GWT goes something like Given there exists an open query ...
0
votes
2answers
64 views

Mock-framework-independent way to mock out parameters with Machine.Fakes

I've hit an impasse with Machine.Fakes: I cannot figure out how to mock an out parameter using only Machine.Fakes equipment. Because of a bug in RhinoMocks, I switched our mfakes adapter to ...
0
votes
1answer
32 views

MSpec and ReSharper test runner shows specification as PASSED when all its tests FAILED

Is this a bug, or expected behaviour? When using MSpec and ReSharper, in the top pane my specification has clearly failed, but the bottom pane shows it as Passed.
0
votes
1answer
43 views

MSpec Behaviours

MSpec gurus, why doesn't this work? public class with_command_line_args { protected const string ValidFilename = "ValidFilename.txt"; protected const string InvalidFilename = ...
0
votes
1answer
257 views

mspec & rhino mocks expected exception testing

I'm fairly new to unit testing and can't get around how to test (or if I even should) this case properly. I have a controller method (pseudo code): public ActionResult Register(formModel model) { ...
0
votes
2answers
336 views

MSpec runs under ReSharper fine, but TD.NET throws exception

I've been receiving this exception when trying to run mspec specification tests with TD.NET. ------ Test started: Assembly: DesignRightWeb.Specs.dll ------ Error: Runner failure: ...
0
votes
1answer
103 views

Is there a way to RowTest using MSpec?

Whilst practising the Check Out Kata with MSpec I wanted to remove the duplication in my specs the same way that you would add a RowTest in NUnit, but I couldn't figure out how. Has anyone tried ...
0
votes
3answers
784 views

Help configuring MSpec

rig: win7 64bit, vs2010, mvc v2, TestDriven.Net 3.0, Reshaper 5.0, MSpec 0.3 i recently started a new project and want to use mspec. (1) copied Machine.Specifications.ReSharperRunner.5.0.dll and ...
0
votes
1answer
232 views

Reharper runner plugins for xunit and mspec simultaniously

I have successfully used the Resharper 4.5 runner for xunit tests in vs2008. Now I want to try out MSpec and I want to use the Resharper 4.5 runner for MSpec. But I have them both installed I get an ...
0
votes
2answers
909 views

ASP.NET MVC tests with MSpec. Is this correct or needs refactoring?

I'm new to MSpec and would like to know if the way I wrote my test for ASP.NET MVC is correct. The test passes but I don't really like the way it's written and it seems awkward. I'm certainly missing ...
0
votes
1answer
411 views

Generate Manager Report from Unit Tests (Visual Studio)

Is it possible to generate a report from Visual Studio 2008's integrated unit tests? Say, one you hand off to an account manager to include in an invoice for the client. One that looks say 10% as ...