Skip to content

Instantly share code, notes, and snippets.

@oinant
Created September 14, 2015 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oinant/58339e59ec2a431b7c20 to your computer and use it in GitHub Desktop.
Save oinant/58339e59ec2a431b7c20 to your computer and use it in GitHub Desktop.
public void An_HeroBuilder_cannot_build_a_hero_without_class()
{
Action tryToBuildAHeroWithoutClass = () => new HeroBuilder().Create();
tryToBuildAHeroWithoutClass.ShouldThrow<HeroBuilder.BuildingHeroWithoutClassAttempException>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment