machine / machine.specifications
- Source
- Commits
- Network (23)
- Issues (5)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Dec 26 09:55:39 -0800 2009 | |
| |
Distribution/ | Sun Nov 22 15:41:25 -0800 2009 | |
| |
Libraries/ | Fri Feb 05 16:18:53 -0800 2010 | |
| |
License.txt | Wed Nov 18 09:27:46 -0800 2009 | |
| |
Misc/ | Tue Sep 29 08:27:35 -0700 2009 | |
| |
Partstore.config | Thu Oct 23 13:46:35 -0700 2008 | |
| |
README.markdown | Mon Nov 23 20:09:05 -0800 2009 | |
| |
Source/ | Sat Feb 06 04:58:04 -0800 2010 | |
| |
Specs/ | Sat Dec 26 09:54:36 -0800 2009 | |
| |
Tools/ | Tue Dec 22 12:38:42 -0800 2009 | |
| |
build.cmd | Thu Nov 19 03:58:23 -0800 2009 | |
| |
rakefile | Thu Dec 24 10:08:58 -0800 2009 |
Machine.Specifications (MSpec)
NOTICE: Machine.Specifications.NUNit and Machine.Specifications.XUnit are now deprecated. Please remove them from your projects.
Most recent build available here
Machine.Specifications is a Context/Specification framework geared towards removing language noise and simplifying tests. All it asks is that you accept the =()=>.
Below docs are a work in progress:
Machine.Specifications
Machine.Specifications is a Context/Specification framework geared towards removing language noise and simplifying tests. All it asks is that you accept the =()=>.
The source code is available on github at http://github.com/machine/machine.specifications. It is released under the terms of the MIT license with some parts MS-PL. Information about this license is contained within the accompanying License.txt file.
Getting started with MSpec
Downloading/Building/Installing MSpec (would love to make this simpler)
MSpec is a tool that is constantly being worked on in order to fix bugs or add new features. As such, it does not have the classic model of milestone releases to represent "stable" version, although the version number of MSpec is periodically updated to reflect progress in the evolution of the codebase.
With this in mind, there are two common ways to obtain MSpec: build from source or get the latest build zip MSpec's Continuous Integration (CI) server.
Build from source
The easiest way to build MSpec from source is to clone the git repository on github and build the MSpec solution. If you do not intend to fork/contribute changes MSpec, you can anonymously clone the github repo with the following command (If terms like "git" and "clone the git repository" are moon language to you, you can learn more here) .:
git clone git://github.com/machine/machine.specifications.git
The solution file is located, relative to the root of the repo, at Source\Machine.Specifications.sln.
Get the latest build from the CI server
MSpec has a Continuous Integration setup, provided by CodeBetter and running on TeamCity.
If you'd like to skip the above steps and just want the binaries for MSpec, you can get the zip of the latest successful CI build at this link.
How stuff works
Subject/It/Because of/Establish context/Cleanup after
Running your specs (Test Runners)
Command line
MSpec, like other testing frameworks, provides a robust command-line runner that can be used to execute specs in one or more assemblies and allows a number of output formats to suit your needs.
Usage of the command-line runner is as follows (from mspec.exe --help):
Usage: mspec-runner.exe [options]
Options:
-i, --include Executes all specifications in contexts with these comma delimited tags. Ex. -i "foo,bar,foo_bar"
-x, --exclude Exclude specifications in contexts with these comma delimited tags. Ex. -x "foo,bar,foo_bar"
-t, --timeinfo Shows time-related information in HTML output
-s, --silent Suppress console output
--teamcity Reporting for TeamCity CI integration.
--html Outputs an HTML file(s) to path, one-per-assembly w/ index.html (if directory, otherwise all are in one file)
--xml Outputs an XML file(s) to path
-h, --help Shows this help message
Usage: mspec-runner.exe [options]
Selenium Support in the command-line runner
The command-line runner provides support for Selenium web tests written using MSpec. When utilized, the MSpec HTML reports will show additional, Selenium-specific information, like screenshots and some useful debug info that can come in handy when trying to figure out why a web test has failed. Aaron Jensen has written a blog post on the topic that explains how to integrate this feature into your specs.
TeamCity support from the command-line runner
MSpec provides TeamCity integration via specialized output from the command-line runner to provide information and updates on overall test run status while the specs are running. This functionality can be enabled by passing the --teamcity option to the command-line runner.
HTML output from the command-line runner
Using the --html option from the commandline runner will cause the runner to output its test results in a "human readable" HTML document. If no file name is provided as an arugment, it will use the name of the tested assembly(s) as the name of the output file (in the case of multiple assemblies, an index.html will be included with links to each assembly-specific html document). If a filename is provided, the output will be place in a file at that name/path, overwriting previous files (if multiple assemblies are being testing, the output for each will be grouped into a single file).
Using this option with a CI server that supports running the command-line runner and capturing the output HTML as an artifact, you can integrate the test results into your build report.
Also, this option is needed if you intend to capture Selenium-specific test information in your build results.
XML output from the command-line runner
XML output can be generated by MSpec's command-line runner for use with external tools that can consume the markup with the --xml <filename(s) option.
This option behaves the same as the --html option, in terms of filename behavior and multiple assemblies.
ReSharper
Using InstallResharperRunner*.bat
MSpec provides a bat file for each of the three versions of ReSharper it supports, 4.1, 4.5, 5.0.
TestDriven.Net
Using InstallTDNetRunner.bat
NOTE: if you obtained the latest succesful binaries from CI build as indicated above, the InstallTDNetRunner.bat is already with the binaries and doesn't need to be copied
MSpec provides a InstallTDNetRunner.bat file which can be used to add support for MSpec to TestDriven.Net. The file (and another version which runs silently) are available in the \Distribution\Specifications directory of the source repository. To add TD.Net support:
Copy one or more of the .bat files in the above-mentioned directory into a directory which contains the complete build output of the project (usually
\Buildin the source repo).Run one of them.
After following these steps, MSpec-based Contexts and Specifications can be ran from within Visual Studio in the same manner as tests from other frameworks are executed.
Using XCopy deploy in TD.NET 2.24+
TestDriven.Net versions 2.24 and newer support an XCopy deployment model that simplifies the plugin deployment proecess and negates the versioning issues that arise from using the registry-based scheme used in InstallTDNetRunner.bat.
All that needs to be done is to make sure that the Machine.Specifications.dll.tdnet file that is deployed as part of Machine.Specifications.TDNetRunner.csproj is in the same directory as your MSpec binaries.
Guidelines
The utility of Inheritance in Context/Specification-style testing
aka When/how to use base classes.
Intention revealing contexts
aka helper methods in base classes, fluent-fixture patterns, etc etc ad nauseum.
Tips
Make your Its/Becauses single-line statements
MSpec is designed to reduce noise in tests. You should generally only have one line in your It and Because statements. As such, you should probably leave out the {'s and }'s. Context/Specification testing, while a rethinking of "classic" TDD, still abides by the rules of Arrange-Act-Assert. As such, it is preferrable to keep the latter two as succinct as possible.
Because
If you're consistently finding that you need to have multiple lines in your Because statements, that may be a code smell that your Context is "too chunky". You want to be able to verify and "nail down" that the behavior that you're verifying with your It statements is because of a single action. Of course, most non-trivial contexts require multiple lines of setup to get into the preferred state that you're verifying, but you want to be able to say that there is a particular, final action that makes your specifications pass.
For Example:
public class because_example_goes_here : ExampleSpecs {
}
It
Simultaneously, your It statements should be single-liners and reflect a single assertion. If you're stuffing multiple assertions into a single It, considering the wording of that It and how you may be able to break it up into two or more specifications, each containing a single statement.
public class it_example_goes_here : ExampleSpecs {
}
External links (blog posts, etc?)
Framework Features
IAssemblyContext
This interface has two methods
void OnAssemblyStart()
void OnAssemblyComplete()
These methods are used by classes that implements IAssemblyContext, to set if an assembly loaded by reflection has started to be checked (explored) or is completed

