AjTalk.Tests.EvaluateTests.InvokeStaticDotNetMethodUsingMessage C# (CSharp) Method

InvokeStaticDotNetMethodUsingMessage() private method

private InvokeStaticDotNetMethodUsingMessage ( ) : void
return void
        public void InvokeStaticDotNetMethodUsingMessage()
        {
            object result = this.Evaluate("@System.IO.File exists: 'foobar'");

            Assert.IsNotNull(result);
            Assert.IsInstanceOfType(result, typeof(bool));
            Assert.IsFalse((bool)result);
        }
EvaluateTests