コード例 #1
0
ファイル: TestLogEntry.cs プロジェクト: ecell/ecell3-ide
 public void TearDown()
 {
     _unitUnderTest = null;
 }
コード例 #2
0
ファイル: TestLogEntry.cs プロジェクト: ecell/ecell3-ide
 public void SetUp()
 {
     Ecell.MessageType type = MessageType.Information;
     string message = "Information.";
     _unitUnderTest = new ApplicationLogEntry(type, message, new object());
 }