public void AppendTest()
        {
            // Make a clone of the collection
            EventCollection collection2 = (EventCollection)collection.Clone();

            // Append collection2 onto the end of collection 1
            collection.Append(collection2);

            // Enusre that that count has gone up
            Assert.AreEqual(8, collection.Count);
        }