1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-12-17 21:22:15 -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"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
bootstrap="tests/functionals/bootstrap.php"
>
<testsuites>
<testsuite name="Poche Test Suite">

View File

@ -1,9 +1,6 @@
<?php
namespace Poche\Tests\Functionals;
require __DIR__.'/PocheWebTestCase.php';
class ApiTest extends PocheWebTestCase
{
public function testGetEntries()

View File

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