Skip to content

Commit 0e07d81

Browse files
committed
Fixed build (added autoloader to tests).
1 parent 2aae5c0 commit 0e07d81

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

Tests/Unit/EnumerableTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Tests\Unit;
44

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

78
/** @covers YaLinqo\Enumerable

Tests/Unit/FunctionsTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Tests\Unit;
44

5+
require_once __DIR__ . '/../../YaLinqo/Linq.php';
56
use YaLinqo\Functions as F;
67

78
/** @covers YaLinqo\Functions

Tests/Unit/LinqTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace Tests\Unit;
44

5+
require_once __DIR__ . '/../../YaLinqo/Linq.php';
6+
57
class LinqTest extends \PHPUnit_Framework_TestCase
68
{
79
function testFunctions ()

Tests/Unit/OrderedEnumerableTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Tests\Unit;
44

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

78
/** @covers YaLinqo\OrderedEnumerable

Tests/Unit/UtilsTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Tests\Unit;
44

5+
require_once __DIR__ . '/../../YaLinqo/Linq.php';
56
use Tests\Stubs\Temp;
67
use YaLinqo\Utils as U;
78

0 commit comments

Comments
 (0)