Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2329 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
16 changed files with 39 additions and 57 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.
Binary file not shown.
Binary file not shown.
@ -1,36 +0,0 @@
@@ -1,36 +0,0 @@
|
||||
// <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; |
||||
|
||||
namespace ICSharpCode.CodeCoverage |
||||
{ |
||||
/// <summary>
|
||||
/// Single NCover runner that is used by all commands.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
public class NCoverRunnerSingleton |
||||
{ |
||||
static NCoverRunner runner; |
||||
|
||||
NCoverRunnerSingleton() |
||||
{ |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Gets the <see cref="NCoverRunner"/> instance.
|
||||
/// </summary>
|
||||
public static NCoverRunner Runner { |
||||
get { |
||||
if (runner == null) { |
||||
runner = new NCoverRunner(); |
||||
} |
||||
return runner; |
||||
} |
||||
} |
||||
} |
||||
} |
Binary file not shown.
Loading…
Reference in new issue