示例#1
0
        internal static Executor CreateExecutor03()
        {
            Executor executor = new BinaryOpExecutor();
            string   tag      = (string)executor.Tag;

            executor.Tag = tag;
            return(executor);
        }
示例#2
0
        public void TestCreateBinaryOpExecutor01()
        {
            BinaryOpExecutor binaryOpExecutor = CreateBinaryOpExecutor01();

            Assert.IsNotNull(binaryOpExecutor);
            #region Record State
            ValueRecorder recorder = new ValueRecorder();
            recorder.Record((int)ReflectionAccessor.Wrap(binaryOpExecutor).GetProperty("CurrentIndex"));
            recorder.FinishRecording();
            #endregion
        }
示例#3
0
        internal static BinaryOpExecutor CreateBinaryOpExecutor01()
        {
            BinaryOpExecutor binaryOpExecutor = new BinaryOpExecutor();

            return(binaryOpExecutor);
        }
示例#4
0
        public static IExecutor CreateIExecutor03()
        {
            IExecutor executor = new BinaryOpExecutor();

            return(executor);
        }