Skip to content

Instantly share code, notes, and snippets.

@DominicFinn
Created March 27, 2015 10:56
Show Gist options
  • Save DominicFinn/c48565fad47556cbdacd to your computer and use it in GitHub Desktop.
Save DominicFinn/c48565fad47556cbdacd to your computer and use it in GitHub Desktop.
Example of our Acceptance Specification Test
public class GivenAPersonIsCreated : AcceptanceSpecification {
protected override void Given() {
}
protected override void When() {
}
[Then]
public void TheUserShouldBeSaved() {
}
[Then]
public void TheUserShouldBeSentAWelcomeEmail() {
}
[Then]
public void TheMonthlyUserCreationStatsShouldBeUpdated() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment