Skip to content

Instantly share code, notes, and snippets.

@plioi
Created September 18, 2013 00:53
Show Gist options
  • Save plioi/6602967 to your computer and use it in GitHub Desktop.
Save plioi/6602967 to your computer and use it in GitHub Desktop.
public class CustomConvention : Convention
{
public CustomConvention()
{
Classes
.NameEndsWith("Tests");
Cases
.Where(method => method.IsVoid());
ClassExecution
.CreateInstancePerTestClass()
.ShuffleCases();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment