Skip to content

Commit

Permalink
Change: Moved unit test directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
yuya-takeyama committed Aug 14, 2011
1 parent 7805f55 commit 45002c7
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions phpunit.xml
@@ -1,7 +1,7 @@
<phpunit colors="true" bootstrap="tests/bootstrap.php"> <phpunit colors="true" bootstrap="tests/unit/bootstrap.php">
<testsuites> <testsuites>
<testsuite name="src"> <testsuite name="Unit Test">
<directory>./tests</directory> <directory>./tests/unit</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<filter> <filter>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/bootstrap.php → tests/unit/bootstrap.php
@@ -1,5 +1,5 @@
<?php <?php
set_include_path(dirname(__FILE__) . '/../src' . PATH_SEPARATOR . get_include_path()); set_include_path(dirname(__FILE__) . '/../../src' . PATH_SEPARATOR . get_include_path());
require_once 'Cache/Casual.php'; require_once 'Cache/Casual.php';
require_once 'Cache/Casual/Container/Memory.php'; require_once 'Cache/Casual/Container/Memory.php';
require_once 'Cache/Casual/Container/File.php'; require_once 'Cache/Casual/Container/File.php';
Expand Down

0 comments on commit 45002c7

Please sign in to comment.