Skip to content

Commit

Permalink
Create Mantis Test Suite configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
giallu committed Apr 29, 2009
1 parent e593fed commit f516488
Show file tree
Hide file tree
Showing 4 changed files with 153 additions and 2 deletions.
42 changes: 42 additions & 0 deletions tests/AllTests.php
@@ -0,0 +1,42 @@
<?php
# Mantis - a php based bugtracking system

# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.

/**
* @package Tests
* @subpackage UnitTests
* @copyright Copyright (C) 2002 - 2009 Mantis Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/

/**
* Test Configuration
*/
require_once 'TestConfig.php';

require_once 'Mantis/AllTests.php';

class AllTests
{

public static function suite()
{
$suite = new PHPUnit_Framework_TestSuite('Mantis Bug Tracker');

$suite->addTest(Mantis_AllTests::suite());

return $suite;
}
}
47 changes: 47 additions & 0 deletions tests/Mantis/AllTests.php
@@ -0,0 +1,47 @@
<?php
# Mantis - a php based bugtracking system

# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.

/**
* @package Tests
* @subpackage UnitTests
* @copyright Copyright (C) 2002 - 2009 Mantis Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/

/**
* Test config
*/
require_once dirname(__FILE__) . '/../TestConfig.php';

require_once 'EnumTest.php';

/**
* @package Tests
* @subpackage UnitTests
* @copyright Copyright (C) 2002 - 2009 Mantis Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/
class Mantis_AllTests
{
public static function suite()
{
$suite = new PHPUnit_Framework_TestSuite('Mantis Bug Tracker');

$suite->addTestSuite('MantisEnumTest');

return $suite;
}
}
3 changes: 1 addition & 2 deletions tests/MantisEnumTest.php
Expand Up @@ -24,8 +24,7 @@

require_once 'PHPUnit/Framework.php';

$t_root_path = dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR;
require_once $t_root_path . 'core/classes/MantisEnum.class.php';
require_once 'MantisEnum.class.php';

/**
* Test cases for MantisEnum class.
Expand Down
63 changes: 63 additions & 0 deletions tests/TestConfig.php
@@ -0,0 +1,63 @@
<?php
# Mantis - a php based bugtracking system

# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.

/**
* @package Tests
* @subpackage UnitTests
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright (C) 2002 - 2009 Mantis Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/

/*
* Start output buffering
*/
ob_start();

/*
* Include PHPUnit dependencies
*/
require_once 'PHPUnit/Framework.php';
/*
* Set error reporting to the level to which Zend Framework code must comply.
*/
error_reporting( E_ALL | E_STRICT );

/*
* Determine the root, library, and tests directories of the framework
* distribution.
*/
$mantisRoot = dirname(__FILE__) . '/..';
$mantisLibrary = "$mantisRoot/core/classes";
$mantisTests = "$mantisRoot/tests";


/*
* Prepend the application/ and tests/ directories to the
* include_path.
*/
$path = array(
$mantisLibrary,
$mantisTests,
get_include_path()
);
set_include_path( implode( PATH_SEPARATOR, $path ) );


/*
* Unset global variables that are no longer needed.
*/
unset($mantisRoot, $mantisLibrary, $mantisTests, $path);

0 comments on commit f516488

Please sign in to comment.