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

GetDotNetObjectType() private method

private GetDotNetObjectType ( ) : void
return void
        public void GetDotNetObjectType()
        {
            object result = this.Evaluate("@System.Object");

            Assert.IsNotNull(result);
            Assert.IsInstanceOfType(result, typeof(Type));
            Assert.AreSame(result, typeof(object));
        }
EvaluateTests