This commit is contained in:
Michael 2024-07-22 14:17:00 +02:00
parent a15319c4d1
commit eebf859afa
39 changed files with 2742 additions and 937 deletions

View file

@ -0,0 +1,15 @@
<?php
namespace Tests\Http\Controllers\GiteaApiController;
use App\Http\Controllers\GiteaApiController\GiteaApiController;
use PHPUnit\Framework\TestCase;
class GiteaApiControllerTest extends TestCase
{
public function testExport_closed_issues()
{
}
}

View file

@ -0,0 +1,15 @@
<?php
namespace Tests\Http\Controllers\GiteaApiController;
use App\Http\Controllers\GiteaApiController\GiteaExport;
use PHPUnit\Framework\TestCase;
class GiteaExportTest extends TestCase
{
public function testExport_issues()
{
}
}

View file

@ -0,0 +1,30 @@
<?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()
{
}
}