Given.Common.TestInitializer.ProcessThen C# (CSharp) 메소드

ProcessThen() 개인적인 메소드

private ProcessThen ( ) : void
리턴 void
        void ProcessThen()
        {
            _typeToProcess
                .GetMethods()
                .Where(TestRunManager.TestRunConfiguration.ThenIdentificationMethod).ToList()
                .ForEach(x => _testStateManager.AddThen(x.Name, x));
        }