Esempio n. 1
0
		public RowTestSuite CreateRowTestSuite(MethodInfo method)
		{
			if (method == null)
				throw new ArgumentNullException("method");
			
			RowTestSuite testSuite = new RowTestSuite(method);
			NUnitFramework.ApplyCommonAttributes(method, testSuite);
			
			return testSuite;
		}
Esempio n. 2
0
        public RowTestSuite CreateRowTestSuite(MethodInfo method)
        {
            if (method == null)
            {
                throw new ArgumentNullException("method");
            }

            RowTestSuite testSuite = new RowTestSuite(method);

            NUnitFramework.ApplyCommonAttributes(method, testSuite);

            return(testSuite);
        }