Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3882 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
13 changed files with 95 additions and 2 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,28 @@
@@ -0,0 +1,28 @@
|
||||
// <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.UnitTesting; |
||||
|
||||
namespace ICSharpCode.CodeCoverage |
||||
{ |
||||
public class RunAllTestsWithCodeCoverageCommand : RunTestWithCodeCoverageCommand |
||||
{ |
||||
public RunAllTestsWithCodeCoverageCommand() |
||||
{ |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Set Owner to null so all tests are run.
|
||||
/// </summary>
|
||||
public override void Run() |
||||
{ |
||||
Owner = null; |
||||
base.Run(); |
||||
} |
||||
} |
||||
} |
Binary file not shown.
Loading…
Reference in new issue