Tagged Questions

18
votes
1answer
3k views

BDD and MSpec, am I approaching this right?

Just wondering if any MSpec and BDDers out there could give me there thoughts on my first attempt at writing a MSpec spec. Now I've left the specs uncoded, but my context has code in it, I just want ...
13
votes
9answers
898 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 ...
5
votes
4answers
264 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 ...
5
votes
1answer
122 views

Rhino Mocks: stubbing value used in assertion?

First my question, and then some details: Q: Do I need to stub the value of a property when making sure its value is used in a subsequent assignment? Details: I'm using Rhino Mocks 3.5's AAA syntax ...
4
votes
2answers
149 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 ...
3
votes
2answers
918 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
3answers
351 views

DRY-ing very similar specs for ASP.NET MVC controller action with MSpec (BDD guidelines)

I have two very similar specs for two very similar controller actions: VoteUp(int id) and VoteDown(int id). These methods allow a user to vote a post up or down; kinda like the vote up/down ...
2
votes
2answers
61 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
190 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
2answers
158 views

How do I assert that a method is called only once?

[Subject(typeof(OnceADayProcessor))] public class When_processing_process_twice { private static ICanBeProcessedOnceADay ProcessedOnceADay; private Establish context = () => { ...
2
votes
2answers
101 views

How do I get ReSharper to stop placing explicit access modifiers on my MSpec members?

I'm using Machine.Specifications and I'm really annoyed by how VS2010/Resharper keeps trying to format my code... for example: Establish context = () => the_cartoon_repository = ...
2
votes
1answer
238 views

Mocking and Stubbing Ajax Requests

Yesterday I re-factored the below method to return either a full view or a partial view. public ActionResult List(int page) { var viewModel = GetListViewModel(page); ...
2
votes
1answer
106 views

Why does this test fail?

I'm trying to test/spec the following action method public virtual ActionResult ChangePassword(ChangePasswordModel model) { if (ModelState.IsValid) { if ...
1
vote
1answer
25 views

MVC MSpec test not hitting [Authorize] attribute

I have an MSpec test to check whether my forms auth is correctly redirecting an unauthorised request, however the test call to the protected action just goes straight to it without getting caught by ...
1
vote
2answers
77 views

Naming test classes with for xSpecification BDD tests / curtailing insanity

I've recently adopted strongly following BDD design along with usage of MSpec for implementing xSpecification tests. This has been leading to some rather insane class names that become hard to ...
1
vote
0answers
163 views

Selenium failing intermittently on the build server [closed]

Possible Duplicate: Selenium test fails on build server with “No response from server” error I am seeing a lot of intermittent failures on our build server with this error: ...
1
vote
3answers
79 views

How do I include specs for a base class in the specs for an inherited class?

I have an RSSDataSourceParser class which is fully covered by MSpec specifications. I also have an inherited class, MultimediaRSSDataSourceParser. It does all of the parent functionality plus ...
1
vote
1answer
260 views

MSpec: Getting my first spec to pass

Just getting started with MSpec and I can't seem to quite get my first spec to pass. Whilst checking the source code is ideal, I don't really want to spend ages doing that right now. The problem is ...
1
vote
1answer
148 views

LambdaExpression comparison

I was playing around with testing using machine specifications and there is something that i am just not able to do, was wondering if somebody have been there before, Is there any way to using Rhino ...
1
vote
2answers
155 views

Comparing two lists with MSpec

Which method should I use to assert that two lists contains the same objects with MSpec?
0
votes
1answer
29 views

Convention for verifying attribute usage in MSpec

I have a specification written in MSpec that checks whether MVC controller action has been marked with HttpPost attribute: [Subject(typeof(AccountController))] public class when_user_logs_in : ...
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
48 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
0answers
69 views

Mspec and Reports [closed]

Mspec Reports take More time to run for the first time after that its running fine.. How Can we correct this issue .Can i preload or any idea regarding it
0
votes
2answers
291 views

Code Coverage with MSpec

Can anyone recommend a free code coverage tool for use with MSpec on VS2010/.NET4? Can TD.NET do this?
0
votes
1answer
60 views

Using Behaves_like<TBehavior> on a Base Class

I would like to specify a Behaves_like on a base specification to ensure that a particular method is marked as virtual. Something like this: public abstract class ...
0
votes
1answer
487 views

Can I “inherit” a delegate? Looking for ways to combine Moq and MSpec without conflicts around It

I have started to use MSpec for BDD, and since long ago I use Moq as my mocking framework. However, they both define It, which means I can't have using Moq and using Machine.Specifications in the same ...
0
votes
1answer
156 views

NullReferenceException when testing DefaultModelBinder

I'm developing a project using BDD/TDD techniques and I'm trying my best to stay the course. A problem I just ran into is unit testing the DefaultModelBinder. I'm using mspec to write my tests. I ...