31 lines
414 B
PHP
31 lines
414 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Http\Controllers\GiteaApiController;
|
||
|
|
||
|
use App\Http\Controllers\GiteaApiController\GiteaFetch;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class GiteaFetchTest extends TestCase
|
||
|
{
|
||
|
|
||
|
public function testGet_issue_time()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testGet_issues()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testGet_repositories()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testGet_company_agents()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|