Skip to content

SpecsFor is a light-weight Behavior-Driven Development framework that focuses on ease of use for *developers* by minimizing testing friction.

License

Notifications You must be signed in to change notification settings

neuhoffm/SpecsFor

This branch is 92 commits behind MattHoneycutt/SpecsFor:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ffc6387 · Apr 17, 2015
Nov 28, 2013
Apr 13, 2015
Aug 15, 2014
Feb 10, 2015
Feb 10, 2015
Feb 10, 2015
Feb 10, 2015
Nov 9, 2014
Apr 14, 2015
Jan 26, 2015
Jan 26, 2015
Jan 26, 2015
Apr 17, 2015
Jun 27, 2014
May 22, 2013
Apr 15, 2015
Jun 6, 2011
Dec 14, 2011
Jan 3, 2012
Feb 26, 2013
Jul 30, 2014
Nov 16, 2011

Repository files navigation

#Project Description SpecsFor is another Behavior-Driven Development framework that focuses on ease of use for developers by minimizing testing friction.

#Main Features

SpecsFor is a Behavior-Driven Development style framework that puts developer productivity ahead of all other goals. The current release features:

  • AutoMocking - Easily configure and verify behavior.
  • ReSharper Live Templates - Quickly create specs with only a few keystrokes.
  • Clean Separation of Test State - Encapsulate test setup and reuse it across as many specs as you like. Run The Same Specs Multiple Times With Different Contexts - SpecsFor allows you to assert the same things are true given any number of contexts.
  • Mix And Match Contexts - Context can be combined and extended to support complex test setup without code duplication or excess noise in your specs.
  • Declarative Context - Context can be established in many ways, including by simply marking your spec class with a special attribute.
  • Works With Any NUnit Test Runner - No add-ins are needed, SpecsFor is fully compatible with all popular test runners including TestDriven.NET, Resharper, and TeamCity.

#Examples

[Given(typeof(TheCarIsNotRunning), typeof(TheCarIsParked))]
[Given(typeof(TheCarIsNotRunning))]
public class when_the_key_is_turned : SpecsFor<Car>
{
    public when_the_key_is_turned(Type[] context) : base(context){}

    protected override void When()
    {
        SUT.TurnKey();
    }

    [Test]
    public void then_it_starts_the_engine()
    {
        GetMockFor<IEngine>()
            .Verify(e => e.Start());
    }
}
public class when_the_key_is_turned_alternate_style : SpecsFor<Car>
{
    protected override void Given()
    {
        Given<TheCarIsNotRunning>();
        Given<TheCarIsParked>();

        base.Given();
    }

    protected override void When()
    {
        SUT.TurnKey();
    }

    [Test]
    public void then_it_starts_the_engine()
    {
        GetMockFor<IEngine>()
            .Verify(e => e.Start());
    }
}

#SpecsFor In Action

Check out the docs at http://specsfor.readme.io

Check out the current version in action: http://www.youtube.com/watch?v=MVwguBsR6eA

See an earlier prototype of SpecsFor in action: http://www.youtube.com/view_play_list?p=982492E9FAE3F64A

Read more about SpecsFor at http://trycatchfail.com/blog

About

SpecsFor is a light-weight Behavior-Driven Development framework that focuses on ease of use for *developers* by minimizing testing friction.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 97.8%
  • CSS 1.9%
  • Other 0.3%