CodeInsiders.SharpQL.Doc.SystemApi.ThrowsArgumentNullExceptionTests.SingleExprSingleRowSelectStatementImplicitCastShouldThrowOnNullArgument C# (CSharp) Метод

SingleExprSingleRowSelectStatementImplicitCastShouldThrowOnNullArgument() приватный Метод

        public void SingleExprSingleRowSelectStatementImplicitCastShouldThrowOnNullArgument()
        {
            SingleExprSingleRowSelectStatement stm = null;
            Assert.Throws<ArgumentNullException>(() => {
                Expression
                    ex = stm;
            });
        }