public void Count_ShouldReturnCount() { //Arrange ICell expected = Cell0; ICell[] cells = { expected }; CellCollection subject = new CellCollection(cells); //Act Int actual = subject.Count(); //Assert ((int)actual).Should().Be(1); }