|
2 |
Title improved
|
||
How can I test for an expected exception with a specific exception message from a resource file in Visual Studio Test?
|
||||
|
1 |
|
||
How can I test for an expected exception with a specific exception message in Visual Studio Test?Visual Studio Test can check for expected exceptions using the ExpectedException attribute. You can pass in an exception like this:
You can also check for the message contained within the ExpectedException like this:
But when testing I18N applications I would use a resource file to get that error message (any may even decide to test the different localizations of the error message if I want to, but Visual Studio will not let me do this:
The compiler will give the following error:
Does anybody know how to test for an exception that has a message from a resource file? One option I have considered is using custom exception classes, but based on often heard advice such as:
I'm not expecting to handle the exceptions differently in normal flow (it's a critical exception, so I'm going into panic mode anyway) and I don't think creating an exception for each test case is the right thing to do. Any opinions?
|
||||
