public void Any_ShouldReturnResultOfAny() { //Arrange ICell[] cells = { Cell0 }; CellCollection subject = new CellCollection(cells); //Act bool actual = subject.Any(cell => true); //Assert actual.Should().BeTrue(); }