当前位置: 首页>>代码示例>>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;未经允许,请勿转载。