Tagged Questions

Machine.Specifications is a Context/Specification framework geared towards removing language noise and simplifying tests.

learn more… | top users | synonyms (1)

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
892 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 ?
6
votes
1answer
1k views

How to integrate MSpec with MS Build?

Few days ago I watched a BDD screencast by Rob Conery. In the video he showed how to use MSpec, so I downloaded it and played with the bits. What I want now is to integrate MSpec with MS Build, but I ...
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 ...
5
votes
2answers
665 views

How do I integrate Machine.Specifications with ReSharper 6?

I'm using ReSharper 6 and I'm trying to get it to pick up my MSpec tests in the Resharper test runner. Unfortunately I can't seem to get this to work. I have copied the MSpec dll files ...
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 ...
5
votes
1answer
181 views

Testing ActionFilterAttributes with MSpec

I'm currently trying to grasp MSpec, mainly to learn new ways of (T/B)DD to be able to make an educated decision on which technology to use. Previously, I've mostly (read: only) used the built-in ...
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
178 views

Unexpected Validate behavior with Moq

Moq has been driving me a bit crazy on my latest project. I recently upgraded to version 4.0.10827, and I'm noticing what seems to me to be a new behavior. Basically, when I call my mocked ...
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 !
4
votes
1answer
105 views

BDD naming: when does it stop being about the user experience?

I'm drawn to MSpec with the hopes of one day sharing my test reports with non-developers*, but that is most valuable (right?) if I discuss the business (the user experience) in the test/scenario names ...
3
votes
1answer
133 views

Can this MSpec test be improved?

As a BDD and MSpec beginner I am still not so sure about best practises and good habits related to BDD in general and specifically to MSpec. Can the following example be improved? Does it follow best ...
3
votes
1answer
451 views

MSpec and SpecFlow when to use which? What are the advantages/disadvantages of either?

I am trying to get started with BDD and found a view blog posts about MSpec and SpecFlow. I'm currently not quite sure when I would use which and what the advantages/disadvantages of either framework ...
3
votes
2answers
1k views

BDD with ASP.NET MVC using SpecFlow and MSpec

I am learning BDD with ASP.NET MVC and based upon a post from Steve Sanderson understand that BDD can be at least of the following two types: Individual code units: in which case you’ll probably ...
3
votes
2answers
915 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
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 ...
3
votes
2answers
846 views

Using MSpec runner in Visual Studio 2010 and .NET 4

I'm a big fan of MSpec so naturally I wanted to use is right away with VS2010 as well. I have the MSpec runner defined as an external tool in Visual Studio to be able to have it always visible as a ...
3
votes
4answers
883 views

What BDD frameworks are popular in .net?

I've recently been getting into BDD and think it holds great promise as a way to get a stakeholder's voice back in the apps we, as developers, create for them. What's your favorite BDD framework and ...
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
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
1answer
115 views

MSpec, what should I put in my [Subject()] attributes?

I've been using MSpec for a little while and I really like it. I've found that to get ReSharper to recognize my specifications, I need to use a SubjectAttribute. I'm wondering though, what's the best ...
2
votes
2answers
100 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
3answers
272 views

How would you avoid context/class explosion in this case with MSpec?

I love mspec. It is great for providing key examples in way that is easy to communicate with non technical people but sometimes I find it provides an unnecessary verbosity, specifically an explosion ...
2
votes
1answer
352 views

How to write tests for ASP.NET MVC 3 AsyncControllers with MSpec

I want to write a TaskController for an ASP.NET MVC 3 application to some long running tasks, like sending a newsletter to the users of the site. I thought using an AsyncController would be ...
2
votes
1answer
307 views

Can mspec tests run in the native Visual Studio 2010 test runner?

I have mspec running with R#, but my client doesn't have R# and doesn't plan on getting it. :( I want my test suite (written completely with mspec) to be valuable to my client, so it would be HUGE if ...
2
votes
2answers
252 views

How do I fake a user log in for unit testing purposes using fakeiteasy within asp.net mvc 2

I have just started learning and usingASP.NET MVC 2 and also getting more involved into unit testing my code. My question is broadly how to simulate a user log in by passing in credentials within my ...
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
104 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 ...
2
votes
2answers
504 views

Is mspec better with or without nunit?

I've seen mspec used with nunit on some blogs and discussions. In fact, most of the examples on the web that I've seen demonstrate mspec with some kind of nunit dependancy or integration. My team is ...
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 ...
2
votes
2answers
708 views

How to install MSpec BDD Framework?

Does anyone know if there is an MSpec installer with R# and/or TestDriven.NET support?
2
votes
2answers
371 views

TeamCity & MSpec with sln2008 runner?

I'm currently using the sln2008 runner. Is there a way to configure TeamCity to execute MSpec tests without switching to a NAnt or MSBuild runner?
2
votes
2answers
1k views

ReSharper doesn't see my Machine.Specification tests

I'm having a problem getting ReSharper to see the Machine.Specification "tests" I've written. The specs run in the ConsoleRunner from mSpec. When I try to "Run Unit Tests" in ReSharper, I get a ...
1
vote
2answers
75 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
1answer
123 views

Should I use specflow at unit test level? [closed]

Possible Duplicate: SpecFlow/BDD for Unit Tests? Over the last few years I have worked in TDD using NUnit/Moq and over the last few months I have been getting to grips with BDD using mSpec. ...
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
40 views

Does MSpec have a “global” cleanup capability?

I am using MSpec to drive my browser tests, but I keep forgetting to close the browser. Rather than put this cleanup in every context, can it be applied globally?
1
vote
2answers
82 views

Can these row test style unit tests be improved to follow good TDD design practices?

Can the following unittest be improved, to follow good TDD design practises (naming, using rowtests, designing the classes) in any of the .NET TDD/BDD frameworks? Also, is there a better way in any ...
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
0answers
162 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
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
3answers
99 views

How do I test a virtual property on an abstract class with Rhino Mocks and MSpec?

I have a virtual property, FirstName, on an abstract class, Foo. I need to test the virtual property's behavior. The method never fires when this test executes (and so the test always fails, no ...
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
3answers
77 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
197 views

Is it possible to create data driven tests with MSpec?

With MSpec is it possible to create data driven tests. For example, NUnit has the TestCase and TextFixture attributes that allow for this. Also, are there equivalents to the combinatorial, sequential ...

1 2 3