Laravel单元测试 - 控制器方法

时间:2017-01-28 15:32:51

标签: laravel unit-testing laravel-5

我想要你对测试类的帮助,我有一些测试方法在这两种方法中失败了,这里失败了:

    class PhotoControllerTest extends TestCase

{
public function testUpdate()
    {
        $photo=$this->json('POST', '/photo', ['id' => 1, 'name' => 'photoExample']);
        $this->json('PUT','/photo/1',['id' => 1,'name' => 'photo2') ->seeJson(['success' => true,'photo'=>true] );

    }
 public function testDestroy()
    {
        $photo =$this->json('POST', '/photo', ['id' => 2,'name' => 'photo');
        $this->json('DELETE', '/photo/2') ->seeJson(['success'=>true]);
    }
}

我正在尝试做的是测试更新方法,通过存储照片,然后尝试更新它,同样的东西使用destroy方法,有什么想法吗?

提前致谢!

0 个答案:

没有答案