Skip to content

Commit 915c2ca

Browse files
committed
Added unit tests for CompositeKeyArray.
1 parent 0602c70 commit 915c2ca

File tree

7 files changed

+1545
-9
lines changed

7 files changed

+1545
-9
lines changed

bootstrap.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
$loader = require __DIR__ . '/vendor/autoload.php';

composer.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,20 @@
99
}
1010
],
1111
"require": {},
12+
"require-dev": {
13+
"phpunit/phpunit": "5.5.*"
14+
},
1215
"autoload": {
1316
"psr-4": {
1417
"Sevavietl\\Arrays\\": "src/"
1518
}
1619
},
1720
"autoload-dev": {
1821
"psr-4": {
19-
"Sevavietl\\Arrays\\Tests": "tests/"
20-
}
22+
"Sevavietl\\Arrays\\Tests\\Unit\\": "tests/unit/"
23+
},
24+
"classmap": [
25+
"tests/TestCase.php"
26+
]
2127
}
2228
}

0 commit comments

Comments
 (0)