the beginning of the idiots
This commit is contained in:
36
qwen/php/tests/Controllers/JobSeekerControllerTest.php
Normal file
36
qwen/php/tests/Controllers/JobSeekerControllerTest.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
// tests/Controllers/JobSeekerControllerTest.php
|
||||
namespace Tests\Controllers;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use App\Controllers\JobSeekerController;
|
||||
|
||||
class JobSeekerControllerTest extends TestCase
|
||||
{
|
||||
private $controller;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->controller = new JobSeekerController();
|
||||
}
|
||||
|
||||
public function testBrowsePositions(): void
|
||||
{
|
||||
$this->markTestIncomplete('Controller testing requires request/response mocking');
|
||||
}
|
||||
|
||||
public function testGetPosition(): void
|
||||
{
|
||||
$this->markTestIncomplete('Controller testing requires request/response mocking');
|
||||
}
|
||||
|
||||
public function testApplyForPosition(): void
|
||||
{
|
||||
$this->markTestIncomplete('Controller testing requires request/response mocking');
|
||||
}
|
||||
|
||||
public function testGetMyApplications(): void
|
||||
{
|
||||
$this->markTestIncomplete('Controller testing requires request/response mocking');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user