public void Clear_ShouldEmptyAllEntriesFromCollection() { // arrange var collection = new SecureUrlCollection(); collection.AddUrl("mock/url"); collection.AddUrl("mock/url2"); // assert Assert.NotEmpty(collection); // act collection.Clear(); // assert Assert.Empty(collection); }