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

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

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