示例#1
0
文件: Guard.cs 项目: belav/moq4
        public static void ImplementsTypeMatcherProtocol(Type type)
        {
            Debug.Assert(type != null);

            Guard.ImplementsInterface(typeof(ITypeMatcher), type);
            Guard.CanCreateInstance(type);
        }