Skip to content

Commit

Permalink
Fix test runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
daylerees committed Jan 17, 2014
1 parent 7e4daa8 commit 87058fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Tiny Test Suite">
<directory>./tests/ZackKitzmiller/TestCase.php</directory>
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>
5 changes: 3 additions & 2 deletions tests/Zackkitzmiller/TestCase.php → tests/TinyTest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?php namespace ZackKitzmiller;
<?php

class TestCase extends \PHPUnit_Framework_TestCase {
use ZackKitzmiller\Tiny;

class TinyTest extends PHPUnit_Framework_TestCase {
protected $tiny = null;

public function setUp() {
Expand Down

0 comments on commit 87058fa

Please sign in to comment.