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