コード例 #1
0
ファイル: PartyTest.php プロジェクト: kaystrobach/party
 /**
  * @test
  */
 public function removeAccountRemovesAccountFromAccountsCollection()
 {
     $account = new Account();
     $this->mockAccounts->expects($this->once())->method('removeElement')->with($account);
     $this->abstractParty->removeAccount($account);
 }