Beispiel #1
0
        // Actions //////////////////////////////////

        public virtual void Start()
        {
            actor = CellOperation.Create(cells.More.Text.Trim()).Value;
            var fixture = actor as Fixture;

            if (fixture != null)
            {
                fixture.Processor = Processor;
            }
        }
Beispiel #2
0
 public static TypedValue Create(this CellOperation operation, string className)
 {
     return(operation.Create(className, new CellTree()));
 }
Beispiel #3
0
        public static void Create(this CellOperation operation, MutableDomainAdapter adapter, string className, Tree <Cell> parameterCell)
        {
            TypedValue instance = operation.Create(className, parameterCell);

            adapter.SetSystemUnderTest(instance.Value);
        }
Beispiel #4
0
 public void Do(Tree <Cell> cell)
 {
     operation.Create(adapter, memberName, new CellTree(cell));
 }