1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-28 04:42:29 +01:00
Pterodactyl-Panel/tests/TestCase.php

30 lines
525 B
PHP
Raw Normal View History

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
2017-10-08 06:29:08 +02:00
/**
* Setup tests.
*/
public function setUp()
{
parent::setUp();
2017-10-08 06:29:08 +02:00
$this->setKnownUuidFactory();
}
/**
* Handles the known UUID handling in certain unit tests. Use the "KnownUuid" trait
* in order to enable this ability.
*/
public function setKnownUuidFactory()
{
// do nothing
}
}