System.CodeDom.Tests.CodeCatchClauseTests.Ctor_NullObjectInStatements_ThrowsArgumentNullException C# (CSharp) 메소드

Ctor_NullObjectInStatements_ThrowsArgumentNullException() 개인적인 메소드

		public void Ctor_NullObjectInStatements_ThrowsArgumentNullException()
		{
			CodeStatement[] statements = new CodeStatement[] { null };
			Assert.Throws<ArgumentNullException>("value", () => new CodeCatchClause("name", new CodeTypeReference(typeof(void)), statements));
		}