Given.Common.TestInitializer.ProcessThen C# (CSharp) Method

ProcessThen() private method

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