예제 #1
0
        public void TestCreateBooleanOrExecutor01()
        {
            BooleanOrExecutor booleanOrExecutor = CreateBooleanOrExecutor01();

            Assert.IsNotNull(booleanOrExecutor);
            #region Record State
            ValueRecorder recorder = new ValueRecorder();
            recorder.Record((int)ReflectionAccessor.Wrap(booleanOrExecutor).GetProperty("CurrentIndex"));
            recorder.FinishRecording();
            #endregion
        }
예제 #2
0
        internal static Executor CreateExecutor01()
        {
            Executor executor = new BooleanOrExecutor();

            return(executor);
        }
예제 #3
0
        internal static BooleanOrExecutor CreateBooleanOrExecutor01()
        {
            BooleanOrExecutor booleanOrExecutor = new BooleanOrExecutor();

            return(booleanOrExecutor);
        }
예제 #4
0
        public static IExecutor CreateIExecutor01()
        {
            IExecutor executor = new BooleanOrExecutor();

            return(executor);
        }