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


PHP UnitTester::amOnRoute方法代码示例

本文整理汇总了PHP中UnitTester::amOnRoute方法的典型用法代码示例。如果您正苦于以下问题:PHP UnitTester::amOnRoute方法的具体用法?PHP UnitTester::amOnRoute怎么用?PHP UnitTester::amOnRoute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UnitTester的用法示例。


在下文中一共展示了UnitTester::amOnRoute方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testShowAction

 public function testShowAction()
 {
     $workspaceId = $this->tester->grabFromRepository('AppBundle:Workspace', 'id', array('name' => 'Writing'));
     $projectTitle = $this->tester->grabFromRepository('AppBundle:Project', 'title', array('workspace' => $workspaceId));
     $this->assertEquals('Symfony book', $projectTitle, 'no match found');
     $this->tester->amOnRoute('workspace_show', array('name' => 'Writing'));
     $this->tester->seeResponseContains('Symfony book');
 }
开发者ID:Soolan,项目名称:mava-project,代码行数:8,代码来源:WorkspaceControllerTest.php

示例2: testIndexAction

 public function testIndexAction()
 {
     $this->tester->amOnRoute('dashboard_index');
     $this->tester->seeResponseContains('This is a placeholder for dashboard area.');
 }
开发者ID:Soolan,项目名称:mava-project,代码行数:5,代码来源:DashboardControllerTest.php

示例3: _before

 protected function _before()
 {
     $this->tester->amOnRoute('inquire-input', ['inquire', 'others']);
     $this->instance = new InquireForm();
     $this->data = ['ext53' => 'test', 'name1' => '積水', 'name2' => '太郎', 'kana1' => 'セキスイ', 'kana2' => 'タロウ', 'sex' => '男', 'tel1' => '01-1234-5678', 'fax1' => '123-4123-1234', 'post1' => '060-0013', 'area' => '北海道', 'address1' => '市区町村', 'address2' => '地名・番地・建物名', 'email1' => 'sekisui@heim.co.jp', 'age' => '61~65歳', 'job' => '無職'];
 }
开发者ID:vodanh624321,项目名称:laravel5,代码行数:6,代码来源:CommonInquireFormRequestTest.php

示例4: _before

 protected function _before()
 {
     $this->tester->amOnRoute('digital-input');
     $this->instance = new DigitalForm();
     $this->data = ['email1' => 'sekisui@heim.co.jp'];
 }
开发者ID:vodanh624321,项目名称:laravel5,代码行数:6,代码来源:CommonDigitalFormRequestTest.php


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