コード例 #1
0
ファイル: BookTest.php プロジェクト: jtorrespdx/library
 function testUpdateTitle()
 {
     //Arrange
     $title = "The Cat in the Hat";
     $test_book = new Book($title);
     $test_book->save();
     $new_title = "Green Eggs and Ham";
     //Act
     $test_book->updateTitle($new_title);
     //Assert
     $this->assertEquals("Green Eggs and Ham", $test_book->getTitle());
 }
コード例 #2
0
ファイル: BookTest.php プロジェクト: kevintokheim/Liberry
 function test_updateTitle()
 {
     //Arrange
     $title = "Revenge of the Martians";
     $test_book = new Book($title);
     $test_book->save();
     $title2 = "Star Wars";
     $test_book2 = new Book($title2);
     $test_book2->save();
     //Act
     $test_book2->updateTitle($title);
     $result = Book::find($test_book2->getId());
     //Assert
     $this->assertEquals($test_book->getTitle(), $result->getTitle());
 }
コード例 #3
0
ファイル: BookTest.php プロジェクト: r-hills/Library
 function test_updateTitle()
 {
     //Arrange
     $title = "History of whatever";
     $test_book = new Book($title);
     $test_book->save();
     //Act
     $new_title = "Future of him";
     $test_book->updateTitle($new_title);
     //Assert
     $result = Book::getAll();
     $this->assertEquals($new_title, $result[0]->getTitle());
 }
コード例 #4
0
ファイル: BookTest.php プロジェクト: bdspen/library_day1
 function testUpdateTitle()
 {
     $title = "The Life and Times of Carrot Top";
     $id = 1;
     $test_book = new Book($title, $id);
     $test_book->save();
     $new_title = "The Old Man Had to Pee";
     $test_book->updateTitle($new_title);
     $this->assertEquals("The Old Man Had to Pee", $test_book->getTitle());
 }
コード例 #5
0
ファイル: BookTest.php プロジェクト: jlbethel/Library
 function test_updateTitle()
 {
     //Arrange
     $title = "Sea Wolf";
     $test_book = new Book($title);
     $test_book->save();
     $title2 = "Eye of the World";
     $test_book->updateTitle($title2);
     //Act
     $id = $test_book->getId();
     $result = new Book($title2, $id);
     //Assert
     $this->assertEquals(Book::find($id), $result);
 }
コード例 #6
0
ファイル: BookTest.php プロジェクト: jlbethel/library-1
 function testUpdateTitle()
 {
     //Arrange
     $title = "bob";
     $test_book = new Book($title);
     $test_book->save();
     $new_title = "Mark Marvel";
     //Act
     $test_book->updateTitle($new_title);
     //Assert
     $this->assertEquals("Mark Marvel", $test_book->getTitle());
 }