// // MonoTests.System.Collections.Generic.Test.CollectionTest // // Authors: // David Waite (mass@akuma.org) // // Copyright (C) 2005 David Waite // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // #if NET_2_0 using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Text; using NUnit.Framework; namespace MonoTests.System.Collections.ObjectModel { [TestFixture] public class CollectionTest { [Test] public void UsableSyncLockTest () { List list = new List (); Collection c = new Collection (list); object listLock = ((ICollection) list).SyncRoot; object cLock = ((ICollection) c).SyncRoot; Assert.AreSame (listLock, cLock); } [Test] public void UnusableSyncLockTest () { UnimplementedList list = new UnimplementedList (); Collection c = new Collection (list); object cLock = ((ICollection) c).SyncRoot; Assert.IsNotNull (cLock); Assert.IsTrue (cLock.GetType ().Equals (typeof (object))); } class UnimplementedList : IList { #region IList Members int IList .IndexOf (T item) { throw new Exception ("The method or operation is not implemented."); } void IList .Insert (int index, T item) { throw new Exception ("The method or operation is not implemented."); } void IList .RemoveAt (int index) { throw new Exception ("The method or operation is not implemented."); } T IList .this [int index] { get { throw new Exception ("The method or operation is not implemented."); } set { throw new Exception ("The method or operation is not implemented."); } } #endregion #region ICollection Members void ICollection .Add (T item) { throw new Exception ("The method or operation is not implemented."); } void ICollection .Clear () { throw new Exception ("The method or operation is not implemented."); } bool ICollection .Contains (T item) { throw new Exception ("The method or operation is not implemented."); } void ICollection .CopyTo (T [] array, int arrayIndex) { throw new Exception ("The method or operation is not implemented."); } int ICollection .Count { get { throw new Exception ("The method or operation is not implemented."); } } bool ICollection .IsReadOnly { get { throw new Exception ("The method or operation is not implemented."); } } bool ICollection .Remove (T item) { throw new Exception ("The method or operation is not implemented."); } #endregion #region IEnumerable Members IEnumerator IEnumerable .GetEnumerator () { throw new Exception ("The method or operation is not implemented."); } #endregion #region IEnumerable Members IEnumerator IEnumerable.GetEnumerator () { throw new Exception ("The method or operation is not implemented."); } #endregion } } } #endif