Created
January 26, 2018 09:07
-
-
Save selcukusta/a441059b1291bdcff757efbc24764b46 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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