Example #1
0
 function test_getAuthorName()
 {
     //Arrange
     $author_name = "Jack London";
     $test_author = new Author($author_name);
     //Act
     $result = $test_author->getAuthorName();
     //Assert
     $this->assertEquals($author_name, $result);
 }
Example #2
0
 function testGetAuthorName()
 {
     //Arrange
     $author_name = "Neal Stephenson";
     $test_author = new Author($author_name);
     //Act
     $result = $test_author->getAuthorName();
     //Assert
     $this->assertEquals($author_name, $result);
 }
Example #3
0
 function testUpdate()
 {
     $author_name = "Murakami";
     $id = 1;
     $test_author = new Author($author_name, $id);
     $test_author->save();
     $new_name = "Hemingway";
     $test_author->update($new_name);
     $this->assertEquals("Hemingway", $test_author->getAuthorName());
 }
Example #4
0
 function test_author_setAuthorName()
 {
     //Arrange
     $author_name = "Whitman";
     $test_author = new Author($author_name);
     //Act
     $test_author->setAuthorName("Walty");
     $result = $test_author->getAuthorName();
     //Assert
     $this->assertEquals("Walty", $result);
 }
Example #5
0
 function testUpdate()
 {
     //Arrange
     $author_name = "Stephen King";
     $id = 1;
     $test_author = new Author($author_name, $id);
     $test_author->save();
     $new_author_name = "Plato";
     //Act
     $test_author->update($new_author_name);
     //Assert
     $this->assertEquals("Plato", $test_author->getAuthorName());
 }
Example #6
0
 function test_searchAuthor()
 {
     $name = "Jerry Garcia";
     $test_author = new Author($name);
     $test_author->save();
     $name2 = "Frank Sinatra";
     $test_author2 = new Author($name2);
     $test_author2->save();
     $result = Author::searchAuthor($test_author->getAuthorName());
     $this->assertEquals($test_author, $result);
 }
Example #7
0
 function testUpdateAuthorName()
 {
     $name = "Uncle Ben";
     $id = 1;
     $test_author = new Author($name, $id);
     $test_author->save();
     $new_name = "Silly Steve";
     $test_author->updateAuthorName($new_name);
     $this->assertEquals("Silly Steve", $test_author->getAuthorName());
 }
Example #8
0
 function testUpdate()
 {
     //Arrange
     $author_name = "Nathan Young";
     $id = null;
     $test_author = new Author($author_name, $id);
     $test_author->save();
     $new_name = "Kyle Pratuch";
     //Act
     $test_author->update($new_name);
     //Assert
     $this->assertEquals("Kyle Pratuch", $test_author->getAuthorName());
 }
 function testUpdate()
 {
     //Arrange
     $author_name = "J.K. Rowling";
     $test_author = new Author($author_name);
     $test_author->save();
     $new_author_name = "Harry Potter";
     //Act
     $test_author->update($new_author_name);
     //Assert
     $this->assertEquals("Harry Potter", $test_author->getAuthorName());
 }
Example #10
0
 function testUpdate()
 {
     $author_name = "Stephen King";
     $test_author = new Author($author_name);
     $test_author->save();
     $new_name = "Neal Stephenson";
     $test_author->update($new_name);
     $this->assertEquals($new_name, $test_author->getAuthorName());
 }