achieved 100% test coverage for the read only collection wrapper; optimized the indexer of the license key class; increased test coverage for the license key class to 100%

git-svn-id: file:///srv/devel/repo-conversion/nusu@95 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2008-11-27 19:02:48 +00:00
parent c43bfd47c8
commit de7c28fa84
5 changed files with 218 additions and 8 deletions

View file

@ -115,17 +115,17 @@ namespace Nuclex.Support.Collections {
/// Starting index at which to begin filling the destination array
/// </param>
void ICollection.CopyTo(Array array, int index) {
throw new NotImplementedException();
this.objectCollection.CopyTo(array, index);
}
/// <summary>Whether the List is synchronized for multi-threaded usage</summary>
bool ICollection.IsSynchronized {
get { throw new NotImplementedException(); }
get { return this.objectCollection.IsSynchronized; }
}
/// <summary>Synchronization root on which the List locks</summary>
object ICollection.SyncRoot {
get { throw new NotImplementedException(); }
get { return this.objectCollection.SyncRoot; }
}
#endregion