internal TestCaseParameters GetTestPamameters(int i, InitializationLock locker)
        {
            var behaviour = new BehaviourExecutor(i, locker);

            var parms = new TestCaseParameters(new[] { behaviour })
            {
                TestName = Name(i)
            };

            return(parms);
        }
예제 #2
0
 public BehaviourExecutor(int index, InitializationLock locker)
 {
     this.index  = index;
     this.locker = locker;
 }