mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-01-11 00:58:41 +00:00
upgrade phpunit
This commit is contained in:
parent
65ee96550c
commit
374d34901c
|
|
@ -23,8 +23,8 @@ trait ApiControllerTicketTrait
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @covers \Modules\Support\Controller\ApiController
|
* @covers \Modules\Support\Controller\ApiController
|
||||||
* @group module
|
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
public function testApiSupportAppCreate() : void
|
public function testApiSupportAppCreate() : void
|
||||||
{
|
{
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
|
|
@ -39,8 +39,8 @@ trait ApiControllerTicketTrait
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \Modules\Support\Controller\ApiController
|
* @covers \Modules\Support\Controller\ApiController
|
||||||
* @group module
|
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
public function testApiSupportAppCreateInvalidData() : void
|
public function testApiSupportAppCreateInvalidData() : void
|
||||||
{
|
{
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
|
|
@ -55,8 +55,8 @@ trait ApiControllerTicketTrait
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \Modules\Support\Controller\ApiController
|
* @covers \Modules\Support\Controller\ApiController
|
||||||
* @group module
|
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
public function testApiTicketCreate() : void
|
public function testApiTicketCreate() : void
|
||||||
{
|
{
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
|
|
@ -74,8 +74,8 @@ trait ApiControllerTicketTrait
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \Modules\Support\Controller\ApiController
|
* @covers \Modules\Support\Controller\ApiController
|
||||||
* @group module
|
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
public function testApiTicketGet() : void
|
public function testApiTicketGet() : void
|
||||||
{
|
{
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
|
|
@ -90,8 +90,8 @@ trait ApiControllerTicketTrait
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \Modules\Support\Controller\ApiController
|
* @covers \Modules\Support\Controller\ApiController
|
||||||
* @group module
|
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
public function testApiTicketCreateInvalidData() : void
|
public function testApiTicketCreateInvalidData() : void
|
||||||
{
|
{
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
|
|
@ -106,8 +106,8 @@ trait ApiControllerTicketTrait
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \Modules\Support\Controller\ApiController
|
* @covers \Modules\Support\Controller\ApiController
|
||||||
* @group module
|
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
public function testApiTicketElementCreate() : void
|
public function testApiTicketElementCreate() : void
|
||||||
{
|
{
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
|
|
@ -125,8 +125,8 @@ trait ApiControllerTicketTrait
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \Modules\Support\Controller\ApiController
|
* @covers \Modules\Support\Controller\ApiController
|
||||||
* @group module
|
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
public function testApiTicketElementGet() : void
|
public function testApiTicketElementGet() : void
|
||||||
{
|
{
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
|
|
@ -141,8 +141,8 @@ trait ApiControllerTicketTrait
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \Modules\Support\Controller\ApiController
|
* @covers \Modules\Support\Controller\ApiController
|
||||||
* @group module
|
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
public function testApiTicketElementCreateInvalidData() : void
|
public function testApiTicketElementCreateInvalidData() : void
|
||||||
{
|
{
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
|
|
|
||||||
|
|
@ -31,10 +31,9 @@ use phpOMS\Router\WebRouter;
|
||||||
use phpOMS\Utils\TestUtils;
|
use phpOMS\Utils\TestUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @testdox Modules\Support\tests\Controller\ApiControllerTest: Support api controller
|
|
||||||
*
|
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\TestDox('Modules\Support\tests\Controller\ApiControllerTest: Support api controller')]
|
||||||
final class ApiControllerTest extends \PHPUnit\Framework\TestCase
|
final class ApiControllerTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
protected ApplicationAbstract $app;
|
protected ApplicationAbstract $app;
|
||||||
|
|
|
||||||
|
|
@ -19,31 +19,23 @@ use Modules\Support\Models\NullSupportApp;
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\CoversClass(\Modules\Support\Models\NullSupportApp::class)]
|
||||||
final class NullSupportAppTest extends \PHPUnit\Framework\TestCase
|
final class NullSupportAppTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullSupportApp
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testNull() : void
|
public function testNull() : void
|
||||||
{
|
{
|
||||||
self::assertInstanceOf('\Modules\Support\Models\SupportApp', new NullSupportApp());
|
self::assertInstanceOf('\Modules\Support\Models\SupportApp', new NullSupportApp());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullSupportApp
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testId() : void
|
public function testId() : void
|
||||||
{
|
{
|
||||||
$null = new NullSupportApp(2);
|
$null = new NullSupportApp(2);
|
||||||
self::assertEquals(2, $null->id);
|
self::assertEquals(2, $null->id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullSupportApp
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testJsonSerialize() : void
|
public function testJsonSerialize() : void
|
||||||
{
|
{
|
||||||
$null = new NullSupportApp(2);
|
$null = new NullSupportApp(2);
|
||||||
|
|
|
||||||
|
|
@ -19,31 +19,23 @@ use Modules\Support\Models\NullTicketElement;
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\CoversClass(\Modules\Support\Models\NullTicketElement::class)]
|
||||||
final class NullTicketElementTest extends \PHPUnit\Framework\TestCase
|
final class NullTicketElementTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullTicketElement
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testNull() : void
|
public function testNull() : void
|
||||||
{
|
{
|
||||||
self::assertInstanceOf('\Modules\Support\Models\TicketElement', new NullTicketElement());
|
self::assertInstanceOf('\Modules\Support\Models\TicketElement', new NullTicketElement());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullTicketElement
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testId() : void
|
public function testId() : void
|
||||||
{
|
{
|
||||||
$null = new NullTicketElement(2);
|
$null = new NullTicketElement(2);
|
||||||
self::assertEquals(2, $null->id);
|
self::assertEquals(2, $null->id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullTicketElement
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testJsonSerialize() : void
|
public function testJsonSerialize() : void
|
||||||
{
|
{
|
||||||
$null = new NullTicketElement(2);
|
$null = new NullTicketElement(2);
|
||||||
|
|
|
||||||
|
|
@ -19,31 +19,23 @@ use Modules\Support\Models\NullTicket;
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\CoversClass(\Modules\Support\Models\NullTicket::class)]
|
||||||
final class NullTicketTest extends \PHPUnit\Framework\TestCase
|
final class NullTicketTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullTicket
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testNull() : void
|
public function testNull() : void
|
||||||
{
|
{
|
||||||
self::assertInstanceOf('\Modules\Support\Models\Ticket', new NullTicket());
|
self::assertInstanceOf('\Modules\Support\Models\Ticket', new NullTicket());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullTicket
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testId() : void
|
public function testId() : void
|
||||||
{
|
{
|
||||||
$null = new NullTicket(2);
|
$null = new NullTicket(2);
|
||||||
self::assertEquals(2, $null->id);
|
self::assertEquals(2, $null->id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\NullTicket
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testJsonSerialize() : void
|
public function testJsonSerialize() : void
|
||||||
{
|
{
|
||||||
$null = new NullTicket(2);
|
$null = new NullTicket(2);
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ use Modules\Support\Models\SupportApp;
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\CoversClass(\Modules\Support\Models\SupportApp::class)]
|
||||||
final class SupportAppTest extends \PHPUnit\Framework\TestCase
|
final class SupportAppTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
private SupportApp $app;
|
private SupportApp $app;
|
||||||
|
|
@ -31,20 +32,14 @@ final class SupportAppTest extends \PHPUnit\Framework\TestCase
|
||||||
$this->app = new SupportApp();
|
$this->app = new SupportApp();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\SupportApp
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testDefault() : void
|
public function testDefault() : void
|
||||||
{
|
{
|
||||||
self::assertEquals(0, $this->app->id);
|
self::assertEquals(0, $this->app->id);
|
||||||
self::assertEquals('', $this->app->name);
|
self::assertEquals('', $this->app->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\SupportApp
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testSerialize() : void
|
public function testSerialize() : void
|
||||||
{
|
{
|
||||||
$this->app->name = 'Test Title';
|
$this->app->name = 'Test Title';
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ use Modules\Support\Models\TicketElement;
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\CoversClass(\Modules\Support\Models\TicketElement::class)]
|
||||||
final class TicketElementTest extends \PHPUnit\Framework\TestCase
|
final class TicketElementTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
private TicketElement $element;
|
private TicketElement $element;
|
||||||
|
|
@ -31,20 +32,14 @@ final class TicketElementTest extends \PHPUnit\Framework\TestCase
|
||||||
$this->element = new TicketElement();
|
$this->element = new TicketElement();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\TicketElement
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testDefault() : void
|
public function testDefault() : void
|
||||||
{
|
{
|
||||||
self::assertEquals(0, $this->element->id);
|
self::assertEquals(0, $this->element->id);
|
||||||
self::assertEquals(0, $this->element->ticket);
|
self::assertEquals(0, $this->element->ticket);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\TicketElement
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testSerialize() : void
|
public function testSerialize() : void
|
||||||
{
|
{
|
||||||
$this->element->ticket = 2;
|
$this->element->ticket = 2;
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@ use Modules\Support\Models\TicketElement;
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\CoversClass(\Modules\Support\Models\Ticket::class)]
|
||||||
final class TicketTest extends \PHPUnit\Framework\TestCase
|
final class TicketTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
private Ticket $ticket;
|
private Ticket $ticket;
|
||||||
|
|
@ -32,10 +33,7 @@ final class TicketTest extends \PHPUnit\Framework\TestCase
|
||||||
$this->ticket = new Ticket();
|
$this->ticket = new Ticket();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\Ticket
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testDefault() : void
|
public function testDefault() : void
|
||||||
{
|
{
|
||||||
self::assertEquals(0, $this->ticket->id);
|
self::assertEquals(0, $this->ticket->id);
|
||||||
|
|
@ -46,10 +44,7 @@ final class TicketTest extends \PHPUnit\Framework\TestCase
|
||||||
self::assertInstanceOf('\Modules\Support\Models\SupportApp', $this->ticket->app);
|
self::assertInstanceOf('\Modules\Support\Models\SupportApp', $this->ticket->app);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\Ticket
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testElementInputOutput() : void
|
public function testElementInputOutput() : void
|
||||||
{
|
{
|
||||||
$element1 = new TicketElement();
|
$element1 = new TicketElement();
|
||||||
|
|
@ -62,10 +57,7 @@ final class TicketTest extends \PHPUnit\Framework\TestCase
|
||||||
self::assertEquals([$element2, $element1], $this->ticket->invertTicketElements());
|
self::assertEquals([$element2, $element1], $this->ticket->invertTicketElements());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\Ticket
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testElementRemove() : void
|
public function testElementRemove() : void
|
||||||
{
|
{
|
||||||
$element1 = new TicketElement();
|
$element1 = new TicketElement();
|
||||||
|
|
@ -77,10 +69,7 @@ final class TicketTest extends \PHPUnit\Framework\TestCase
|
||||||
self::assertFalse($this->ticket->removeElement(0));
|
self::assertFalse($this->ticket->removeElement(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Models\Ticket
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testSerialize() : void
|
public function testSerialize() : void
|
||||||
{
|
{
|
||||||
$serialized = $this->ticket->jsonSerialize();
|
$serialized = $this->ticket->jsonSerialize();
|
||||||
|
|
|
||||||
|
|
@ -24,12 +24,10 @@ use Modules\Support\Views\TicketView;
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
#[\PHPUnit\Framework\Attributes\CoversClass(\Modules\Support\Views\TicketView::class)]
|
||||||
class TicketViewTest extends \PHPUnit\Framework\TestCase
|
class TicketViewTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Views\TicketView
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testDefault() : void
|
public function testDefault() : void
|
||||||
{
|
{
|
||||||
$view = new TicketView();
|
$view = new TicketView();
|
||||||
|
|
@ -37,10 +35,7 @@ class TicketViewTest extends \PHPUnit\Framework\TestCase
|
||||||
self::assertStringContainsString('', $view->getAccountImage(999));
|
self::assertStringContainsString('', $view->getAccountImage(999));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
#[\PHPUnit\Framework\Attributes\Group('module')]
|
||||||
* @covers \Modules\Support\Views\TicketView
|
|
||||||
* @group module
|
|
||||||
*/
|
|
||||||
public function testAccountImageUrl() : void
|
public function testAccountImageUrl() : void
|
||||||
{
|
{
|
||||||
$media = new Media();
|
$media = new Media();
|
||||||
|
|
|
||||||
|
|
@ -1,31 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="Bootstrap.php" colors="true" columns="120" stopOnError="true" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="Bootstrap.php" colors="true" columns="120" stopOnError="true" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache">
|
||||||
<coverage includeUncoveredFiles="true" processUncoveredFiles="false">
|
<coverage includeUncoveredFiles="true">
|
||||||
<include>
|
|
||||||
<directory suffix=".php">../</directory>
|
|
||||||
</include>
|
|
||||||
<exclude>
|
|
||||||
<directory>../vendor*</directory>
|
|
||||||
<directory>../MainRepository*</directory>
|
|
||||||
<directory>../Karaka*</directory>
|
|
||||||
<directory>../Admin/Install/Application*</directory>
|
|
||||||
<directory>../phpOMS*</directory>
|
|
||||||
<directory>../tests*</directory>
|
|
||||||
<directory>../*/tests*</directory>
|
|
||||||
<directory>../**/tests*</directory>
|
|
||||||
<directory>*/tests*</directory>
|
|
||||||
<directory suffix="tpl.php">../*</directory>
|
|
||||||
<directory suffix="lang.php">../*</directory>
|
|
||||||
<directory suffix="Test.php">../*</directory>
|
|
||||||
<directory suffix="Routes.php">../*</directory>
|
|
||||||
<directory suffix="Hooks.php">../*</directory>
|
|
||||||
<directory>../**/test*</directory>
|
|
||||||
<directory>../**/Theme*</directory>
|
|
||||||
<directory>../**/Admin/Routes*</directory>
|
|
||||||
<directory>../**/Admin/Hooks*</directory>
|
|
||||||
<directory>../**/Admin/Install*</directory>
|
|
||||||
<directory>../Media/Files*</directory>
|
|
||||||
</exclude>
|
|
||||||
<report>
|
<report>
|
||||||
<clover outputFile="coverage.xml"/>
|
<clover outputFile="coverage.xml"/>
|
||||||
<html outputDirectory="../tests" lowUpperBound="75" highLowerBound="95"/>
|
<html outputDirectory="../tests" lowUpperBound="75" highLowerBound="95"/>
|
||||||
|
|
@ -56,4 +31,31 @@
|
||||||
<const name="WEB_SERVER_DOCROOT" value="./Karaka"/>
|
<const name="WEB_SERVER_DOCROOT" value="./Karaka"/>
|
||||||
<const name="RESET" value="1"/>
|
<const name="RESET" value="1"/>
|
||||||
</php>
|
</php>
|
||||||
|
<source>
|
||||||
|
<include>
|
||||||
|
<directory suffix=".php">../</directory>
|
||||||
|
</include>
|
||||||
|
<exclude>
|
||||||
|
<directory>../vendor*</directory>
|
||||||
|
<directory>../MainRepository*</directory>
|
||||||
|
<directory>../Karaka*</directory>
|
||||||
|
<directory>../Admin/Install/Application*</directory>
|
||||||
|
<directory>../phpOMS*</directory>
|
||||||
|
<directory>../tests*</directory>
|
||||||
|
<directory>../*/tests*</directory>
|
||||||
|
<directory>../**/tests*</directory>
|
||||||
|
<directory>*/tests*</directory>
|
||||||
|
<directory suffix="tpl.php">../*</directory>
|
||||||
|
<directory suffix="lang.php">../*</directory>
|
||||||
|
<directory suffix="Test.php">../*</directory>
|
||||||
|
<directory suffix="Routes.php">../*</directory>
|
||||||
|
<directory suffix="Hooks.php">../*</directory>
|
||||||
|
<directory>../**/test*</directory>
|
||||||
|
<directory>../**/Theme*</directory>
|
||||||
|
<directory>../**/Admin/Routes*</directory>
|
||||||
|
<directory>../**/Admin/Hooks*</directory>
|
||||||
|
<directory>../**/Admin/Install*</directory>
|
||||||
|
<directory>../Media/Files*</directory>
|
||||||
|
</exclude>
|
||||||
|
</source>
|
||||||
</phpunit>
|
</phpunit>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user