1
0
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:
Vincent Jousse 2013-11-24 11:27:49 +01:00
parent 03d0df62eb
commit 43a934d560
3 changed files with 4 additions and 4 deletions

View File

@ -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">

View File

@ -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()

View File

@ -0,0 +1,3 @@
<?php
require __DIR__.'/../../vendor/autoload.php';
require __DIR__.'/PocheWebTestCase.php';