AjTalk.Tests.Compiler.VmCompilerTests.CompileSimpleCommandWithParenthesis C# (CSharp) Метод

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

private CompileSimpleCommandWithParenthesis ( ) : void
Результат void
        public void CompileSimpleCommandWithParenthesis()
        {
            Block block = this.compiler.CompileBlock("a := b with: (anObject class)");
            Assert.IsNotNull(block);
            Assert.AreEqual(1, block.NoConstants);
            Assert.AreEqual(3, block.NoGlobalNames);
            Assert.AreEqual(0, block.NoLocals);
            Assert.IsNotNull(block.ByteCodes);
            Assert.AreEqual(10, block.ByteCodes.Length);
            Assert.AreEqual(0, block.Arity);
        }