Axiom.Runtime.UnitTests._AMProgram.P C# (CSharp) Method

P() private method

private P ( ) : void
return void
        public void P()
        {
            ArrayList p = new ArrayList();
            HaltInstruction hi = new HaltInstruction();
            p.Add(hi);

            AMProgram program = new AMProgram();
            program.Initialize(p);

            Assert.AreSame(program.P.Instruction, hi);
        }