forked from thorsten/phpMyFAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for multiple LDAP/AD servers, closes thorsten#744
- Loading branch information
Showing
7 changed files
with
329 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
/** | ||
* Test suite for configuration related classes | ||
* | ||
* PHP Version 5.4 | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public License, | ||
* v. 2.0. If a copy of the MPL was not distributed with this file, You can | ||
* obtain one at http://mozilla.org/MPL/2.0/. | ||
* | ||
* @category phpMyFAQ | ||
* @package PMF_Tests | ||
* @author Thorsten Rinne <[email protected]> | ||
* @copyright 2013 phpMyFAQ Team | ||
* @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 | ||
* @link http://www.phpmyfaq.de | ||
* @since 2013-12-30 | ||
*/ | ||
|
||
require_once 'PHPUnit/Framework/TestSuite.php'; | ||
require_once 'PHPUnit/TextUI/TestRunner.php'; | ||
|
||
require_once 'PMF_ConfigurationTest.php'; | ||
|
||
/** | ||
* Configuration_AllTests | ||
* | ||
* @category phpMyFAQ | ||
* @package PMF_Tests | ||
* @author Thorsten Rinne <[email protected]> | ||
* @copyright 2013 phpMyFAQ Team | ||
* @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 | ||
* @link http://www.phpmyfaq.de | ||
* @since 2013-12-30 | ||
*/ | ||
class Configuration_AllTests | ||
{ | ||
public static function suite() | ||
{ | ||
$suite = new PHPUnit_Framework_TestSuite('phpMyFAQ Configuration'); | ||
|
||
$suite->addTestSuite('PMF_ConfigurationTest'); | ||
|
||
return $suite; | ||
} | ||
} |
Oops, something went wrong.