コード例 #1
0
ファイル: BookTest.php プロジェクト: EightArmCode/librarian
 public function testCheckInIsIdempotent()
 {
     $id = Uuid::createNew();
     $book = new Book($id);
     $book->checkIn();
     $events = $book->getUncommittedChanges()->getIterator()->getArrayCopy();
     self::assertCount(0, $events);
 }