Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
19 lines
263 B
Plaintext
19 lines
263 B
Plaintext
<?php
|
|
|
|
namespace {{ namespace }};
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class {{ class }} extends TestCase
|
|
{
|
|
/**
|
|
* A basic unit test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExample()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|