public void Collections()
 {
     var collection = new[] { 1, 2, 3 };
     collection.Should().HaveCount(4, "because we thought we put three items in the collection");
 }