We were successfully generating stubs and moles for third party vendor assemblies for our unit tests. With their recent updates a lot of types are being ignored as certain methods have been declared obsolete(...,true). Is there a work around at all. We want to avoid starting from scratch using a new mocking tool..

link|improve this question
feedback

1 Answer

See: Stub generation failes with obsolete attribute, Pex v0.94.51023.0
"This is by design. When a method is marked at Obsolete(..., true), C# will not allow [you] to instantiate [a] class implementing that interface."

link|improve this answer
I was hoping that while generating a stub/mole for a Type, Moles framework would be able to ignore the specific members that have been marked with obsolete attribute..The compiler would not complain then.. am I missing something? – aman Feb 21 at 13:18
C# does let you instantiate classes that implement interfaces with obsolete members... – Porges Feb 22 at 8:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.