コード例 #1
0
ファイル: Assert.cs プロジェクト: BackupTheBerlios/mbunit-svn
 public static void Warning(string message)
 {
     if (message == null)
         throw new ArgumentNullException("message");
     ReportWarning warning = new ReportWarning();
     warning.Text = message;
     warnings.Add(warning);
 }
コード例 #2
0
ファイル: Reportrun.cs プロジェクト: timonela/mb-unit
 public bool ContainsReportWarning(ReportWarning o)
 {
     return this.List.Contains(o);
 }
コード例 #3
0
ファイル: Reportrun.cs プロジェクト: timonela/mb-unit
 public void RemoveReportWarning(ReportWarning o)
 {
     this.List.Remove(o);
 }
コード例 #4
0
ファイル: Reportrun.cs プロジェクト: timonela/mb-unit
 public void AddReportWarning(ReportWarning o)
 {
     this.List.Add(o);
 }