Nailed the unit test coverage for all classes in the root namespace at 100%; fixed ugly german comment in ReadOnlyDictionary; moved AbstractFactory interface for FactoryEmployer in Nuclex.Support.Plugins into its own file; wrote unit tests for the PluginHelper, Shared, StringSegment and WeakReference classes

git-svn-id: file:///srv/devel/repo-conversion/nusu@93 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2008-11-26 19:15:36 +00:00
parent ddff1d8353
commit cb0355193d
16 changed files with 738 additions and 46 deletions

View file

@ -19,6 +19,7 @@ License along with this library
#endregion
using System;
using System.Diagnostics;
namespace Nuclex.Support {
@ -30,7 +31,7 @@ namespace Nuclex.Support {
/// <summary>Returns the global instance of the class</summary>
public static SharedType Instance {
[System.Diagnostics.DebuggerStepThrough]
[DebuggerStepThrough]
get {
return instance;
}