diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-04-12 09:29:59 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-04-12 09:29:59 +0200 |
commit | bdebe6598c52a74f7040e3a11198b3554fa58f54 (patch) | |
tree | 9f9c2c6f79a4a76adb8371bd5bc5fd90108eae0f /tests/Api/ExportCsvTest.php | |
parent | 90f29d6e671f4c24f75bdc4774f223c53bf0a46c (diff) | |
download | semanticscuttle-bdebe6598c52a74f7040e3a11198b3554fa58f54.tar.gz semanticscuttle-bdebe6598c52a74f7040e3a11198b3554fa58f54.tar.bz2 |
use bootstrap file declared in phpunit.xml and do not include it in every single test file. also get rid of the PHPUnit_MAIN_METHOD declarations since using phpunit directly is preferred
Diffstat (limited to 'tests/Api/ExportCsvTest.php')
-rw-r--r-- | tests/Api/ExportCsvTest.php | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/Api/ExportCsvTest.php b/tests/Api/ExportCsvTest.php index 2bff8a5..681f0de 100644 --- a/tests/Api/ExportCsvTest.php +++ b/tests/Api/ExportCsvTest.php @@ -12,14 +12,8 @@ * @license GPL http://www.gnu.org/licenses/gpl.html * @link http://sourceforge.net/projects/semanticscuttle */ - -require_once dirname(__FILE__) . '/../prepare.php'; require_once 'HTTP/Request2.php'; -if (!defined('PHPUnit_MAIN_METHOD')) { - define('PHPUnit_MAIN_METHOD', 'Api_ExportCsvTest::main'); -} - /** * Unit tests for the SemanticScuttle csv export API * @@ -40,21 +34,6 @@ class Api_ExportCsvTest extends TestBaseApi /** - * Used to run this test class standalone - * - * @return void - */ - public static function main() - { - require_once 'PHPUnit/TextUI/TestRunner.php'; - PHPUnit_TextUI_TestRunner::run( - new PHPUnit_Framework_TestSuite(__CLASS__) - ); - } - - - - /** * Test if authentication is required when sending no auth data */ public function testAuthWithoutAuthData() @@ -280,8 +259,4 @@ class Api_ExportCsvTest extends TestBaseApi return $ar; } } - -if (PHPUnit_MAIN_METHOD == 'Api_ExportCsvTest::main') { - Api_ExportCsvTest::main(); -} ?>
\ No newline at end of file |