コード例 #1
0
 public function render()
 {
     return $this->grid->render();
 }
コード例 #2
0
ファイル: GridTest.php プロジェクト: restgames/battleship-php
 /**
  * @test
  * @dataProvider gridsAndTheirRenderingDataProvider
  *
  * @param string $expectedRender
  * @param Grid   $grid
  */
 public function givenAnEmptyGridWhenPlacingAllShipsThenRenderMustMathString($expectedRender, $grid)
 {
     $this->assertSame($expectedRender, $grid->render());
 }