示例#1
0
文件: Match.php 项目: 0ida/fussi
 /**
  * @param Game $game
  */
 public function addGame(Game $game)
 {
     $game->setMatch($this);
     $this->games[] = $game;
 }
示例#2
0
文件: GameTest.php 项目: 0ida/fussi
 public function testMatchProperty()
 {
     $match = $this->getMock('Application\\Model\\Entity\\Match');
     $this->game->setMatch($match);
     $this->assertSame($match, $this->game->getMatch());
 }