Whats the shortest way to assert that an attribute is applied to method in c#?
I'm using nunit-2.5
:)
|
|
Whats the shortest way to assert that an attribute is applied to method in c#? I'm using nunit-2.5 :)
|
|||
|
|
|
|
|
||
|
|
|
|
I'm not sure of the assert method that nunit uses, but you can simply use this boolean expression for the parameter that is passed to it (assuming you are able to use LINQ:
If the attribute is applied, then it will return true. If you want to make a generic version (and not use typeof) you can use a generic method to do this for you:
And then call it in your assert method like so:
To do this with an expression, you can define the following extension method first:
And then call it in code like this:
Note that it doesn't matter what the parameters that are passed to the method are, as the method is never called, it simply needs the expression. |
||||||
|
|
|
An alternative for nunit 2.5:
|
||
|
|