public void WhereAny_ShouldReturnResultOfWhereAny()
        {
            //Arrange
            ICell[]        cells   = { Cell0 };
            CellCollection subject = new CellCollection(cells);

            //Act
            Bool actual = subject.WhereAny(cell => true);

            //Assert
            ((bool)actual).Should().BeTrue();
        }