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