Ejemplo n.º 1
0
 public void AddResult(Boolean result, String testInstruction, String message, String _file, String _method)
 => AddEntry(TestEntry.FromResult(result, testInstruction, message), _file, _method);
Ejemplo n.º 2
0
 public void LogError(MethodInfo _method, String message) => AddEntry(TestEntry.FromError(message), _method.DeclaringType.Name, _method.Name);
Ejemplo n.º 3
0
 public void LogInjection(MethodInfo _method, String message) => AddEntry(TestEntry.FromInjection(message), _method.DeclaringType.Name, _method.Name);
Ejemplo n.º 4
0
 public void AddNote(String message, String _file, String _method)
 => AddEntry(TestEntry.FromNote(message), _file, _method);