AddThen() public method

public AddThen ( string text, MethodInfo method ) : void
text string
method System.Reflection.MethodInfo
return void
Esempio n. 1
0
 void ProcessThen()
 {
     _typeToProcess
     .GetMethods()
     .Where(TestRunManager.TestRunConfiguration.ThenIdentificationMethod).ToList()
     .ForEach(x => _testStateManager.AddThen(x.Name, x));
 }