> For the complete documentation index, see [llms.txt](https://docs.elentra.org/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.elentra.org/api/automated-testing/functional-tests/testing-http-verbs.md).

# Testing HTTP Verbs

Using this template for creating a new Test Case:

```bash
<?php

namespace Tests\Functional\{MODULE_NAME}\Http;

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

class {CONTROLLER_NAME}Test extends TestCase
{

}
```

{% hint style="info" %}

* Replace `{MODULE_NAME}` with the module’s name
* Replace `{CONTROLLER_NAME}` with the controller’s name
  {% endhint %}
