mirror of
https://github.com/moparisthebest/wallabag
synced 2024-12-18 05:32:23 -05:00
Use specific bootstrap file for functional tests
This commit is contained in:
parent
03d0df62eb
commit
43a934d560
@ -8,7 +8,7 @@
|
|||||||
processIsolation="false"
|
processIsolation="false"
|
||||||
stopOnFailure="false"
|
stopOnFailure="false"
|
||||||
syntaxCheck="false"
|
syntaxCheck="false"
|
||||||
bootstrap="vendor/autoload.php"
|
bootstrap="tests/functionals/bootstrap.php"
|
||||||
>
|
>
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="Poche Test Suite">
|
<testsuite name="Poche Test Suite">
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace Poche\Tests\Functionals;
|
namespace Poche\Tests\Functionals;
|
||||||
|
|
||||||
require __DIR__.'/PocheWebTestCase.php';
|
|
||||||
|
|
||||||
|
|
||||||
class ApiTest extends PocheWebTestCase
|
class ApiTest extends PocheWebTestCase
|
||||||
{
|
{
|
||||||
public function testGetEntries()
|
public function testGetEntries()
|
||||||
|
3
tests/functionals/bootstrap.php
Normal file
3
tests/functionals/bootstrap.php
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<?php
|
||||||
|
require __DIR__.'/../../vendor/autoload.php';
|
||||||
|
require __DIR__.'/PocheWebTestCase.php';
|
Loading…
Reference in New Issue
Block a user