36 lines
946 B
PHP
36 lines
946 B
PHP
<?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');
|
|
}
|
|
} |