We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed60089 + a6d9811 commit 7e4daa8Copy full SHA for 7e4daa8
3 files changed
.travis.yml
@@ -3,3 +3,5 @@ php:
3
- 5.5
4
- 5.4
5
- 5.3
6
+before_script:
7
+ - composer install --dev --prefer-source
phpunit.xml
@@ -1,6 +1,6 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
-<phpunit colors="true">
+<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Tiny Test Suite">
<directory>./tests/ZackKitzmiller/TestCase.php</directory>
tests/Zackkitzmiller/TestCase.php
@@ -18,7 +18,7 @@ public function testFromTiny() {
18
$this->assertEquals(5, $reversed);
19
}
20
21
- public function testReveringRandomInt() {
+ public function testReversingRandomInt() {
22
for ($i = 0; $i <= 100; $i++) {
23
$this->assertEquals($this->tiny->from($this->tiny->to($i)), $i);
24
0 commit comments