当前位置: 首页>>代码示例>>PHP>>正文


PHP Author::updateName方法代码示例

本文整理汇总了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());
 }
开发者ID:r-hills,项目名称:Library,代码行数:13,代码来源:AuthorTest.php

示例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);
 }
开发者ID:kevintokheim,项目名称:Liberry,代码行数:15,代码来源:AuthorTest.php

示例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());
 }
开发者ID:jlbethel,项目名称:library-1,代码行数:13,代码来源:AuthorTest.php


注:本文中的Author::updateName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。