public void Should_ClearAllAddedNotes() { service.Add("titolo 1", "description 1"); service.Add("titolo 2", "description 2"); service.Clear(); IList <Note> notes = service.All(); Assert.That(notes, Is.Empty); }