public RuntimeTestGroup(RuntimeTestRunner parent, RuntimeTest test, IRuntimeTestOutput output)
 {
     _parent  = parent;
     TestCase = test;
     _output  = output;
     LoadRunnableTests();
 }
Example #2
0
        public void Awake()
        {
            _runner = GetComponent <RuntimeTestRunner>();
            if (_runner == null)
            {
                _runner = RuntimeTestRunner.PlayModeInstance;
            }

            _runner.Enqueue(this);
        }