public void Error_stringはErrorレベルでログ出力を行う() { // when Loggi.Error("aaa"); // then traceListener.AssertMessage("Error", "aaa", null); }
public void Error_string_ExceptionはErrorレベルでログ出力を行う() { // setup try { throwException("eee"); } catch (Exception e) { // when Loggi.Error("aaa", e); // then traceListener.AssertMessage("Error", "aaa", e); } }