當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Book::deleteOne方法代碼示例

本文整理匯總了PHP中Book::deleteOne方法的典型用法代碼示例。如果您正苦於以下問題:PHP Book::deleteOne方法的具體用法?PHP Book::deleteOne怎麽用?PHP Book::deleteOne使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Book的用法示例。


在下文中一共展示了Book::deleteOne方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testDeleteOne

 function testDeleteOne()
 {
     $book_name = "Rum diaries";
     $test_book = new Book($book_name);
     $test_book->save();
     $book_name = "Yer not a wizard harry";
     $test_book2 = new Book($book_name);
     $test_book2->save();
     $test_book->deleteOne();
     $result = Book::getAll();
     $this->assertEquals([$test_book2], $result);
 }
開發者ID:jschold,項目名稱:Library,代碼行數:12,代碼來源:BookTest.php

示例2: testDeleteOne

 function testDeleteOne()
 {
     //Arrange
     $title = "The Cat in the Hat";
     $test_book = new Book($title);
     $test_book->save();
     $title2 = "Misery";
     $test_book2 = new Book($title2);
     $test_book2->save();
     //Act
     $test_book->deleteOne();
     $result = Book::getAll();
     //Assert
     $this->assertEquals($test_book2, $result[0]);
 }
開發者ID:jtorrespdx,項目名稱:library,代碼行數:15,代碼來源:BookTest.php

示例3: testDeleteOne

 function testDeleteOne()
 {
     //Arrange
     $title = "Grapes of Wrath";
     $test_book = new Book($title);
     $test_book->save();
     $title2 = "Cannery Row";
     $test_book2 = new Book($title2);
     $test_book2->save();
     //Act
     $test_book->deleteOne();
     //Assert
     $this->assertEquals([$test_book2], Book::getAll());
 }
開發者ID:jtorrespdx,項目名稱:library_catalog,代碼行數:14,代碼來源:BookTest.php

示例4: testDelete

 function testDelete()
 {
     //Arrange
     $author_name = "Stephen King";
     $id = 1;
     $test_author = new Author($author_name, $id);
     $test_author->save();
     $book_name = "Gattica";
     $id = 1;
     $test_book = new Book($book_name, $id);
     $test_book->save();
     //Act
     $test_book->addAuthor($test_author);
     $test_book->deleteOne();
     //Assert
     $this->assertEquals([], $test_author->getBooks());
 }
開發者ID:kennygrage,項目名稱:epicLibrary,代碼行數:17,代碼來源:BookTest.php

示例5: testDeleteOne

 function testDeleteOne()
 {
     //Arrange
     $author_first = "Dr.";
     $author_last = "Seuss";
     $title = "The Cat in the Hat";
     $test_book = new Book($author_first, $author_last, $title);
     $test_book->save();
     $author_first2 = "Stephen";
     $author_last2 = "King";
     $title2 = "Misery";
     $test_book2 = new Book($author_first2, $author_last2, $title2);
     $test_book2->save();
     //Act
     $test_book->deleteOne();
     $result = Book::getAll();
     //Assert
     $this->assertEquals($test_book2, $result[0]);
 }
開發者ID:alexMcosta,項目名稱:library,代碼行數:19,代碼來源:BookTest.php


注:本文中的Book::deleteOne方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。