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 ...
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
1answer
184 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
155 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
1answer
107 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
28 views
Is this a clean BDD/MSpec test?
I have a static class Cryptographic that can Encypt and Decrypt a string. I have written the following specs for this:
[Subject(typeof(Cryptographic))]
class When_encrypting_and_decrypting_a_string
{
...
3
votes
2answers
110 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 ...
3
votes
1answer
151 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
521 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
2k 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
987 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
154 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
358 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
4answers
925 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 ...
2
votes
2answers
91 views
How do you name xSpecification/BDD test classes so that they convey the intent? Especially in the Solution Explorer
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 ...
2
votes
1answer
129 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
1answer
373 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
326 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
727 views
How to install MSpec BDD Framework?
Does anyone know if there is an MSpec installer with R# and/or TestDriven.NET support?
1
vote
1answer
150 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
2answers
93 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
219 views
Confusion about functional testing, BDD and TDD
I have a form where several fields have to be filled in. However, only one field is compulsory. So, I came up with the following spec:
[Subject(typeof(CompanyHomeController))]
public class ...
1
vote
1answer
200 views
Converting MSpec tests to plain NUnit
I am trying to get started with pure TDD and also consider the BDD flavor. I am trying to grasp, how writing unit tests with MSpec feels in contrast pure to NUnit.
Consider a simple MSpec test like ...
1
vote
1answer
159 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
167 views
Comparing two lists with MSpec
Which method should I use to assert that two lists contains the same objects with MSpec?
1
vote
1answer
434 views
MSpec & Resharper test runner problem
I'm using MSpec and Visual Studio 2010 with Resharper 5.1. I've installed the MSpec test runner plugin into resharper but it's not working properly. Here's my test:
public class ...
1
vote
1answer
411 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
1answer
61 views
Why does this commented out MSpec Behavior show up in the ReSharper test runner?
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
2answers
348 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
62 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 ...