public interface IMyServer
{
[OperationContract]
[DynamicResponseType]
[WebGet(UriTemplate = "info")]
string ServerInfo();
}
How do I write an NUnit test to prove that the C# interface method has the [DynamicResponseType] attribute set on it?