phpunit中未定义的action() [英] undefined action() in phpunit

查看:95
本文介绍了phpunit中未定义的action()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<?php

namespace Tests\Feature;

use Tests\TestCase;
use Illuminate\Foundation\Testing\WithFaker;
use Illuminate\Foundation\Testing\RefreshDatabase;

class MemberRegTest extends TestCase
{
    /**
     * A basic test example.
     *
     * @return void
     */
    public function testExample()
    {
       $response = $this->call('GET', '/addmember');
      $response = $this->action('GET', 'MemberController@addmember');

    }
}

测试后给我错误

错误:调用未定义的方法Tests \ Feature \ MemberRegTest :: action()

Error: Call to undefined method Tests\Feature\MemberRegTest::action()

我做错了什么?

推荐答案

TestCase内部有一个action方法,可追溯到Laravel4.x.此方法已替换为不同类和包中的新方法. (您可以通过查看Laravel 5.6 TestCase类来确认此评论.)

There was an action method inside TestCase back to Laravel 4.x. This method has been replaced for new ones in different classes and packages. (You can confirm this reviewing the Laravel 5.6 TestCase class)

对于最新版本的Laravel,如果您要测试 HTTP请求您可以:

For the latest versions of Laravel, If you are trying to test a HTTP Request you could do:

    $response = $this->json('GET', 'api/addmember');
    $response->assertStatus(200) // or whatever you want to assert.

现在,如果要进行浏览器测试,则应使用官方的 Laravel Dusk .该软件包提供了非常酷而实用的方法来模拟用户与您的网站的交互,就像这样简单:

Now if you want to do browser tests, you should use the official Laravel Dusk. This package has very cool and useful methods to simulate user interactions with your site, as easy as this:

    $this->browse(function ($browser) use ($user) {
        $browser->visit('/login')
                ->type('email', $user->email)
                ->type('password', 'secret')
                ->press('Login')
                ->assertPathIs('/home');

这篇关于phpunit中未定义的action()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆