| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- //
- // ListViewGroupCollectionTest.cs
- //
- // 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.
- //
- // Copyright (c) 2006 Daniel Nauck
- //
- // Author:
- // Daniel Nauck (dna(at)mono-project(dot)de)
- #if NET_2_0
- using System;
- using System.Windows.Forms;
- using System.Drawing;
- using System.Reflection;
- using System.Collections;
- using NUnit.Framework;
- namespace MonoTests.System.Windows.Forms
- {
- [TestFixture]
- public class ListViewGroupCollectionTest
- {
- ListViewGroupCollection grpCol = null;
- [SetUp]
- public void SetUp()
- {
- ListView lv = new ListView ();
- grpCol = lv.Groups;
- }
- [Test]
- public void DefaultProperties ()
- {
- Assert.AreEqual (false, ((IList)grpCol).IsReadOnly, "#A1");
- Assert.AreEqual (false, ((IList)grpCol).IsFixedSize, "#A2");
- Assert.AreEqual (true, ((ICollection)grpCol).IsSynchronized, "#A3");
- Assert.AreEqual (grpCol, ((ICollection)grpCol).SyncRoot, "#A4");
- Assert.AreEqual (0, grpCol.Count, "#A5");
- }
- [Test]
- public void AddTest ()
- {
- grpCol.Add (new ListViewGroup ("Item1"));
- grpCol.Add (new ListViewGroup ("Item2"));
- Assert.AreEqual (2, grpCol.Count, "#B1");
- }
- [Test]
- public void ClearTest ()
- {
- grpCol.Add (new ListViewGroup ("Item1"));
- grpCol.Add (new ListViewGroup ("Item2"));
- grpCol.Clear ();
- Assert.AreEqual (0, grpCol.Count, "#C1");
- }
- [Test]
- public void ContainsTest ()
- {
- ListViewGroup obj = new ListViewGroup ("Item1");
- ListViewGroup obj2 = new ListViewGroup ("Item2");
- grpCol.Add (obj);
- Assert.AreEqual (true, grpCol.Contains (obj), "#D1");
- Assert.AreEqual (false, grpCol.Contains (obj2), "#D2");
- }
- [Test]
- public void IndexOfTest ()
- {
- ListViewGroup obj = new ListViewGroup ("Item1");
- ListViewGroup obj2 = new ListViewGroup ("Item2");
- grpCol.Add (obj);
- grpCol.Add (obj2);
- Assert.AreEqual (1, grpCol.IndexOf (obj2), "#E1");
- }
- [Test]
- public void RemoveTest ()
- {
- ListViewGroup obj = new ListViewGroup ("Item1");
- ListViewGroup obj2 = new ListViewGroup ("Item2");
- grpCol.Add (obj);
- grpCol.Add (obj2);
- grpCol.Remove (obj);
- Assert.AreEqual (1, grpCol.Count, "#F1");
- }
- [Test]
- public void RemoveAtTest ()
- {
- ListViewGroup obj = new ListViewGroup ("Item1");
- ListViewGroup obj2 = new ListViewGroup ("Item2");
- grpCol.Add (obj);
- grpCol.Add (obj2);
- grpCol.RemoveAt (0);
- Assert.AreEqual (1, grpCol.Count, "#G1");
- Assert.AreEqual (true, grpCol.Contains (obj2), "#G2");
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void IndexerOutOfRangeTest ()
- {
- grpCol.Add (new ListViewGroup ("Item1"));
- grpCol[10] = null;
- }
- [Test]
- public void IndexerOutOfRangeTest2()
- { //.NET 2.0 don't throw a exception here
- grpCol.Add (new ListViewGroup ("Item1"));
- grpCol["TestItemThatDoesNotExist"] = null;
- }
- }
- }
- #endif
|