public void All_ShouldReturnAllMatchCondition()
        {
            //Arrange
            ICell expected = Cell0;

            ICell[]        cells   = { expected };
            CellCollection subject = new CellCollection(cells);

            //Act
            bool actual = subject.All(cell => true);

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