Testing HTTP Verbs

Using this template for creating a new Test Case:

<?php

namespace Tests\Functional\{MODULE_NAME}\Http;

use Entrada\Models\Auth\User;
use Entrada\Support\Testing\TestCase;

class {CONTROLLER_NAME}Test extends TestCase
{

}
  • Replace {MODULE_NAME} with the module’s name

  • Replace {CONTROLLER_NAME} with the controller’s name

Last updated