예제 #1
0
 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);
 }
예제 #2
0
 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]);
 }
예제 #3
0
 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());
 }
예제 #4
0
 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());
 }
예제 #5
0
 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]);
 }