Machine.Specifications is a Context/Specification framework geared towards removing language noise and simplifying tests.
1
vote
1answer
17 views
How do I execute an MSpec specification in a specific Thread Culture?
I have a few specifications that test code performing culture-aware conversions. I want to set a defined culture for my tests so that I can hard-code the expected values without having to worry about ...
0
votes
1answer
57 views
Using Machine.Fakes unit testing with RavenDB EmbeddableDocumentStore
I normally mock IDocumentSession in my MSpec with Machine.Fakes, which the RavenDB guys don't like. How do I use the EmbeddableDocumentStore with Machine.Fakes ?
1
vote
2answers
68 views
Why is this remoting service not found only when running mspec.exe?
This happens only when running tests with mspec.exe. They run fine in ReSharper's test runner. The Establish and Because statements execute, then the exception below appears right after reaching the ...
1
vote
1answer
57 views
Can I have multiple Because statements share the same assetions in MSpec?
I have a simple MSpec test in which I am passing a null value into a method parameter (of type string) in a Because statement. I then check that an exception is thrown in the It statement.
Because ...
2
votes
1answer
114 views
Why does this MustHaveHappened call on a FakeItEasy object fail in MSpec?
When running following test all the assertions fail. Can't figure out why they fail, because the actual implementation does have a call to the objects.
Is this a known bug? Because some other tests ...
3
votes
0answers
59 views
How would I test an attribute-based validation model with MSpec?
I have a model with certain attributes that restrict the values that that model can take. How do I test the model state of this model using MSpec?
1
vote
1answer
109 views
Why do I get an Invalid Operation Exception (non STA thread?) running this MSpec test on TeamCity?
As part of the migration of my app to .NET 4, I'm struggling to get some of the WPF unit tests working again with TeamCity.
On all the tests that are somehow using a WPF control (a ListItem for ...
1
vote
2answers
60 views
Why is Console.WriteLine not working in an MSpec assertion?
I'm having trouble writing to the console from an MSpec assertion. I'm using v0.5.11 (unsigned) from Nuget. Nothing radical here, but it's not working. Anyone know what I'm missing?
public class ...
1
vote
1answer
80 views
How is static object state shared/set between MSpec contexts?
While writing some MSpec BDD tests I came across a scenario where a test that I was expecting to fail was passing, but only when I ran all of my tests. When I ran the test in isolation it failed as ...
0
votes
1answer
68 views
How do I make a test runner that can execute tagged MSpec tests?
I have a suite of mspec test cases that has the [Tags] attribute defined for each. I now have to create a test runner in .Net/C# that takes the tags attribute values(an array of strings) as input and ...
9
votes
4answers
236 views
Is there a way to share assertions among test classes without inheritance in NUnit?
In MSpec there is a neat feature that allows you share assertions between multiple tests. They're called "behaviors"
Behaviours define reusable specs that encapsulate a particular set of,
you ...
3
votes
2answers
134 views
How do I break down a “full stack” feature into acceptance, integration, and unit tests?
I am new to Behavior Driven Development and I am trying to learn it. I am using MSpec & Watin for acceptance tests and MSpec for Unit tests with ASP.Net MVC 4. I have a simple scenario of user ...
3
votes
4answers
135 views
How do I build this Expression with Moq without getting a method group error?
I need to run an expression on a given collection to determine if the expression in the code is written correctly. For the sake of the example, I am going to leave out some unnecessary context, but if ...
1
vote
1answer
147 views
Why does this Machine.Fakes parameter matching throw an exception?
I'm using Machine.Fakes.NSubstitute and want to "fake" a return value such that if the input parameter matches a specific value it returns the mock object, otherwise it returns null.
I tried the ...
1
vote
1answer
63 views
Can I throw an exception in Cleanup to fail a test?
I am running some UI tests using WebDriver and MSpec. I added a check in Cleanup that no JavaScript errors were raised. But, throwing an exception in here doesn't fail the tests. How can I get this to ...
1
vote
0answers
168 views
Why do I get MissingMethodException from MSpec on my TeamCity server?
Lately I've been having problems running my MSpec tests in the TeamCity build. This is happening on two different (unrelated) projects. Everything will work fine locally, but when the TeamCity build ...
0
votes
1answer
184 views
Running Selenium tests from team city/mspec
We are running selenium webdriver tests that have been written using mspec.
We fire these tests from team city using the built in mspec runner.
This is using firefox locally on the server to run the ...
2
votes
1answer
361 views
Why do I get a NotSupportedException when running MSpec on TeamCity?
When running an MSpec build step in TeamCity I am getting the following error in the team city logs:
[Step 7/7] Starting: ...
1
vote
2answers
115 views
Why does adding a constructor fail this MSpec test with System.InvalidOperationException?
I have this first version of a class
public class GenerateAuthorisationWorkflows : IGenerateAuthorisationWorkflows
{
public IList<Guid> FromDtaObjects(IList<DtaObject> dtaObjects, ...
2
votes
1answer
196 views
Separation of “context” and “trigger” in jasmine
Assume I have a simple page, whereby clicking the page title toggles the visibility of the page content (realistic? no, but it's a simple test that includes DOM elements). I'll spare you the HTML and ...
1
vote
1answer
64 views
Why is MSpec reporting false positive when using Entity Framework 4?
I'm trying to write some Mspec tests against some EF4 objects. However they are returning false positives. I don't know if it is the way that I've written the tests or if there is something else going ...
4
votes
1answer
289 views
How do I run MSpec in Visual Studio's test system using Gallio?
I'm trying to run MSpec tests in Visual Studio's test system using Gallio, but it appears to be ignoring the MSpec plugin from the IDE. What I did:
Installed Gallio
Added the MSpec NuGet package to ...
2
votes
1answer
577 views
What is an alternative tool for MSpec integration with Visual Studio?
I recently finished a C# project and wrote tests with MSpec using Machine.Fakes. I have been using the command line runner. It would be more comfortable to see the test results/runs inside Visual ...
2
votes
2answers
334 views
How do I run code before every test run in MSpec?
I'm trying to run some initialization code before a test. I've tried the suggestions in other questions, but it doesn't seem to work. My domain model raises events via the following class:
public ...
1
vote
2answers
148 views
Can Resharper produce an MSpec HTML report as well as the live Visual Studio test results?
I would like to have the live results in the ReSharper Test Results window and the custom formatted MSpec HTML report. Is that possible?
3
votes
2answers
120 views
Can I include URL characters in an MSpec test name when testing routing?
How I can represent the following scenario using MSpec?:
Scenario: Navigation to homepage
When I navigate to /Guestbook
Then I should be on the guestbook page
SpecFlow makes this sort of ...
0
votes
2answers
111 views
Translating a “story” into a MSpec specification
I've been learning about BDD and after trying out a few frameworks have decided to use MSpec in my latest project.
After looking through some examples, I'm unsure about how to identify the scenario ...
3
votes
1answer
168 views
What combination of BDD and mocking frameworks will work with Team Build gated check-in?
I'm trying to implement BDD/TDD on my team as seamlessly as possible. Gated check-in for Team Build only supports MSTest, and Microsoft Pex and Moles cooperate very nicely. For BDD, I'm most ...
2
votes
1answer
289 views
Using Machine.Fakes and WithSubject<TSubject> how do you tell the framework to use a specific constructor argument value when creating the subject
I would like to tell the Machine.Fakes framework to use a specific value for a constructor argument when creating the subject
The subject under test has the following constructor
/// ...
0
votes
1answer
314 views
Test Coverage with ReSharper, MSpec and dotCover
Consider this controller method from an ASP.Net MVC3 project:
Having run dotCover code coverage, the Details method has clearly been covered by a test, as indicated by the green highlighting ...
2
votes
1answer
227 views
Is there a workaround for setting [HostType(“Moles”)] when dealing with anonymous methods in MSpec?
I'm using Pex and Moles for my low-level unit testing, but I'm also exploring MSpec for business-logic validation, and would like to keep using Moles for consistency. The problem, I think, is that ...
0
votes
3answers
248 views
Machine.Fakes how to test virtual method implementation?
Given I have a controller class as such:
public class ResourceController : AuthorizedController
{
public virtual string Resource()
{
//do magic
}
public virtual string ...
3
votes
0answers
726 views
How do I integrate mSpec & ReSharper 7.0 in Visual Studio 11?
I've been trying to get these beta programs to work together. Resharper 7.0.3.261 runs just fine. After a nuget install of machine.specifications, I run the InstallResharperRunner.7.0 - VS2011.bat ...
3
votes
1answer
237 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
{
...
2
votes
1answer
161 views
How to set naming style in ReSharper for mspec tests with double underscore?
I'm using msepc as test framework in VS 2010 with .NET 4.0 and ReSharper 6.1. I already set the naming conventions for mspec with single underscores like described in this article. The thing is, some ...
1
vote
1answer
374 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 ...
3
votes
2answers
984 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 ...
0
votes
1answer
214 views
How can I use Ninject in my ASP MVC MSpec tests?
I'm trying to write an MSpec test that instantiates one of my controllers with all the correct Ninject bindings. How do I go about doing that? This is what I have so far:
...
1
vote
1answer
135 views
Does this specification verifying attribute usage fit MSpec's intended use?
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 : ...
3
votes
2answers
225 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
2answers
112 views
Can you integrate MSpec with the MonoDevelop test runner?
Can you integrate MSpec with the MonoDevelop test runner? It's working in Sharp-Develop. Google says 'nothing' so I'm guessing it's not possible as of the current release (2.8.2).
4
votes
1answer
863 views
Should I use specflow at unit test level? [duplicate]
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.
...
0
votes
1answer
108 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.
8
votes
1answer
324 views
MSpec on Appharbor
It it possible to execute mspec tests on appharbor aside from adding build action ?
0
votes
2answers
112 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 = ...
5
votes
2answers
528 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 ...
5
votes
2answers
278 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 ...
-1
votes
1answer
244 views
How do I assert a method was called on this mocked dependency with moq and mspec?
I was testing a model repository to see if it calls the message bus. I am not sure if this is a good test at all but here is my thinking: I would normally put the bus.send into the controller (this is ...
2
votes
2answers
173 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
160 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 ...
