Пример #1
0
        public void Count_ReturnInitialLengthPlusOne_When_RemoveWasInvoked()
        {
            var profileEntries = new ProfileEntriesCollection(this.innerCollection.ToList());

            profileEntries.Remove(this.innerCollection[0]);
            Assert.AreEqual(profileEntries.Count, this.innerCollection.Count - 1);
        }