I'm new to using Testing Tools on the .NET Framework, so I downloaded it from NuGet with help from ReSharper.
I am using this Quick Start to learn how to use nUnit. I had just copied the code and an error came up on this attribute:
[ExpectedException(typeof(InsufficientFundsException))] //it is user defined Exception
The error is:
The type or namespace name 'ExpectedException' could not be found (are you missing a using directive or an assembly reference?)
Why? And if I need such functionality, what should I replace it with?