Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
git-svn-id: http://php-reader.googlecode.com/svn/trunk@179 51a70ab9-7547-0410-9469-37e369ee0574
  • Loading branch information
svollbehr committed Mar 9, 2010
1 parent b3534b1 commit c685291
Show file tree
Hide file tree
Showing 6 changed files with 362 additions and 545 deletions.
2 changes: 1 addition & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# PHP Reader Library
#
#
# Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Expand Down
10 changes: 5 additions & 5 deletions tests/TestAll.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
*/

/**#@+ @ignore */
require_once("PHPUnit/Framework.php");
require_once("PHPUnit/TextUI/TestRunner.php");
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';

ini_set("include_path", ini_get("include_path") . PATH_SEPARATOR . "../src/");
ini_set("memory_limit", "16M");
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . '../src/');
ini_set('memory_limit', '32M');

$suite = new PHPUnit_Framework_TestSuite("PHP Reader");
$suite = new PHPUnit_Framework_TestSuite('PHP Reader');

$dir = opendir(dirname(__FILE__));
while (($file = readdir($dir)) !== false) {
Expand Down
Loading

0 comments on commit c685291

Please sign in to comment.