本文整理汇总了PHP中Author::updateName方法的典型用法代码示例。如果您正苦于以下问题:PHP Author::updateName方法的具体用法?PHP Author::updateName怎么用?PHP Author::updateName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Author
的用法示例。
在下文中一共展示了Author::updateName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Author
function test_update()
{
//Arrange
$name = "Bob";
$test_author = new Author($name);
$test_author->save();
//Act
$new_name = "Billy Bobby";
$test_author->updateName($new_name);
//Assert
$result = Author::getAll();
$this->assertEquals($new_name, $result[0]->getName());
}
示例2: Author
function test_update()
{
//Arrange
$name = "David Foster Wallace";
$test_author = new Author($name);
$test_author->save();
$name2 = "Roberto Bolano";
$test_author->updateName($name2);
$id = $test_author->getId();
$test_author2 = new Author($name2, $id);
//Act
$result = Author::find($id);
//Assert
$this->assertEquals($test_author2, $result);
}
示例3: testUpdateName
function testUpdateName()
{
//Arrange
$name = "Stephen King";
$id = 1;
$test_author = new Author($name, $id);
$test_author->save();
$new_name = "James Patterson";
//Act
$test_author->updateName($new_name);
//Assert
$this->assertEquals("James Patterson", $test_author->getName());
}