public void WhenIsNull_ThenThrowException()
 {
     Assert.Throws <ArgumentNullException>(() => CollectionExtensions.Fill(null, 1, "Hello"));
 }