aboutsummaryrefslogtreecommitdiffstats
path: root/library/kzykhys/git/test/PHPGit/BaseTestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/kzykhys/git/test/PHPGit/BaseTestCase.php')
-rw-r--r--library/kzykhys/git/test/PHPGit/BaseTestCase.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/library/kzykhys/git/test/PHPGit/BaseTestCase.php b/library/kzykhys/git/test/PHPGit/BaseTestCase.php
deleted file mode 100644
index df69b216e..000000000
--- a/library/kzykhys/git/test/PHPGit/BaseTestCase.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-use Symfony\Component\Filesystem\Filesystem;
-
-/**
- * @author Kazuyuki Hayashi <hayashi@siance.co.jp>
- */
-abstract class BaseTestCase extends PHPUnit_Framework_TestCase
-{
-
- /**
- * @var string
- */
- protected $directory;
-
- /**
- * {@inheritdoc}
- */
- public function setUp()
- {
- $this->directory = __DIR__.'/../../build/' . strtolower(get_class($this));
- }
-
- /**
- * {@inheritdoc}
- */
- public function tearDown()
- {
- $filesystem = new Filesystem();
- $filesystem->remove($this->directory);
- }
-
-} \ No newline at end of file