Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created January 26, 2018 09:07
Show Gist options
  • Select an option

  • Save selcukusta/a441059b1291bdcff757efbc24764b46 to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/a441059b1291bdcff757efbc24764b46 to your computer and use it in GitHub Desktop.
public class ExceptionTestTheoryData : TheoryData<ExceptionTestParameter>
{
public ExceptionTestTheoryData()
{
Add(new ExceptionTestParameter
{
FirstValue = 15,
SecondValue = 0,
ExceptedException = typeof(DivideByZeroException)
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment