Skip to content

Commit

Permalink
Fixed build (added autoloader to tests).
Browse files Browse the repository at this point in the history
  • Loading branch information
Athari committed Jun 7, 2015
1 parent 2aae5c0 commit 0e07d81
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Tests/Unit/EnumerableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Tests\Unit;

require_once __DIR__ . '/../../YaLinqo/Linq.php';
use YaLinqo\Enumerable as E, YaLinqo\Utils, YaLinqo\Functions, Tests\Stubs\AggregateIteratorWrapper;

/** @covers YaLinqo\Enumerable
Expand Down
1 change: 1 addition & 0 deletions Tests/Unit/FunctionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Tests\Unit;

require_once __DIR__ . '/../../YaLinqo/Linq.php';
use YaLinqo\Functions as F;

/** @covers YaLinqo\Functions
Expand Down
2 changes: 2 additions & 0 deletions Tests/Unit/LinqTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Tests\Unit;

require_once __DIR__ . '/../../YaLinqo/Linq.php';

class LinqTest extends \PHPUnit_Framework_TestCase
{
function testFunctions ()
Expand Down
1 change: 1 addition & 0 deletions Tests/Unit/OrderedEnumerableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Tests\Unit;

require_once __DIR__ . '/../../YaLinqo/Linq.php';
use YaLinqo\Enumerable as E, YaLinqo\OrderedEnumerable as OE, YaLinqo\Utils, YaLinqo\Functions;

/** @covers YaLinqo\OrderedEnumerable
Expand Down
1 change: 1 addition & 0 deletions Tests/Unit/UtilsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Tests\Unit;

require_once __DIR__ . '/../../YaLinqo/Linq.php';
use Tests\Stubs\Temp;
use YaLinqo\Utils as U;

Expand Down

0 comments on commit 0e07d81

Please sign in to comment.