machine.specifications
machine.specifications copied to clipboard
Machine.Specifications is a Context/Specification framework for .NET that removes language noise and simplifies tests.
Thanks for the prompt work on updating the extension for the newly released 2022.2, however I've just installed the updated extension and it's still showing as Incompatible. Strange one as...
Cloning this repo is around 160mb, which is not overly burdensome but is not ideal either. I propose a destructive cleanup with something like [BFG](https://rtyley.github.io/bfg-repo-cleaner/) to reduce old copies of...
Just like rspec, print nested contexts on the console, in ReSharper and the HTML/XML reports.
RhinoMocks allows for the ability to return different objects the second, third, fourth etc. time that a method is called. This is particularly useful when you are mocking a factory...
**Migrated from the vstest adapter repo** When running the following spec: ``` C# It foobar = () => { System.Console.WriteLine("console hello world"); }; ``` The output doesn't show up in...
Yesterday, I had an idea about how to add support for examples in MSpec. I'd like to write this: ``` [Subject("Examples")] public class WhenIDoThis { Establish context = () =>...
We've just started using MSpec, and the HTML report is one of the things I like most about it - however I can already see that it'll become more difficult...
Hi, First of all, thanks for a great testing framework. We use it extensively at work and are generally very pleased with it. However, we've run recently into a weird...
I organize my specs using a category class with inner classes for each context ``` class ConsumeSpecs { [Subject("Consuming")] class when_consuming { // ... } } ``` This allows multiple...