public XunitMethodInfoAdapter(IMethodInfo target)
        {
            if (target == null)
                throw new ArgumentNullException("target");

            this.target = target;
        }
Пример #2
0
        public XunitMethodInfoAdapter(IMethodInfo target)
        {
            if (target == null)
            {
                throw new ArgumentNullException("target");
            }

            this.target = target;
        }