You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
897 B
39 lines
897 B
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using ICSharpCode.SharpDevelop; |
|
using ICSharpCode.SharpDevelop.Gui; |
|
|
|
namespace ICSharpCode.UnitTesting |
|
{ |
|
public class UnitTestTaskService : IUnitTestTaskService |
|
{ |
|
public void ClearExceptCommentTasks() |
|
{ |
|
TaskService.ClearExceptCommentTasks(); |
|
} |
|
|
|
public bool InUpdate { |
|
get { return TaskService.InUpdate; } |
|
set { TaskService.InUpdate = value; } |
|
} |
|
|
|
public MessageViewCategory BuildMessageViewCategory { |
|
get { return TaskService.BuildMessageViewCategory; } |
|
} |
|
|
|
public void Add(Task task) |
|
{ |
|
TaskService.Add(task); |
|
} |
|
|
|
public bool SomethingWentWrong { |
|
get { return TaskService.SomethingWentWrong; } |
|
} |
|
} |
|
}
|
|
|