Skip to content

Instantly share code, notes, and snippets.

@oinant
Created September 14, 2015 10:06
Embed
What would you like to do?
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