AjScript.Tests.MachineTests.CreateMachineWithContext C# (CSharp) Méthode

CreateMachineWithContext() private méthode

private CreateMachineWithContext ( ) : void
Résultat void
        public void CreateMachineWithContext()
        {
            Machine machine = new Machine();

            Assert.IsNotNull(machine.Context);

            var result = machine.Context.GetValue("Object");

            Assert.IsNotNull(result);
            Assert.IsInstanceOfType(result, typeof(ObjectFunction));
        }