X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=application%2Ftests%2Fconfig.php;h=0574a8db66399f1c817d87e566a788bb55d91780;hb=10f76202fd55c53463c6c5a4d94846718cd82d10;hp=477c7e197c5c1700ace925393611a94ff8da7ffd;hpb=75d22b262f62dd88e577ade6da3d6be9d34b9930;p=core.git diff --git a/application/tests/config.php b/application/tests/config.php index 477c7e19..0574a8db 100644 --- a/application/tests/config.php +++ b/application/tests/config.php @@ -1,10 +1,13 @@ * @version 0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team * @license GNU GPL 3.0 or any newer version * * This program is free software: you can redistribute it and/or modify @@ -25,7 +28,31 @@ $cfg = FrameworkConfiguration::getSelfInstance(); // CFG: DEFAULT-CONSOLE-COMMAND -$cfg->setConfigEntry('default_console_command', 'tests'); +$cfg->setConfigEntry('default_console_command', 'main'); + +// CFG: DEFAULT-TESTS-CONSOLE-COMMAND +$cfg->setConfigEntry('default_tests_console_command', 'main'); + +// CFG: DEFAULT-TESTS-CONSOLE-CONTROLLER +$cfg->setConfigEntry('default_tests_console_controller', 'main'); + +// CFG: TESTS-CONSOLE-CMD-MAIN-RESOLVER-CLASS +$cfg->setConfigEntry('tests_console_cmd_main_resolver_class', 'CoreFramework\Tests\Resolver\Command\TestsConsoleCommandResolver'); + +// CFG: NEWS-DOWNLOAD-FILTER-CLASS +$cfg->setConfigEntry('news_download_filter_class', 'CoreFramework\Filter\News\NewsDownloadFilter'); + +// CFG: NEWS-PROCESS-FILTER-CLASS +$cfg->setConfigEntry('news_process_filter_class', 'CoreFramework\Filter\News\NewsProcessFilter'); + +// CFG: NEWS-READER-MAIN-CLASS +$cfg->setConfigEntry('news_reader_main_class', 'CoreFramework\Reader\News\Console\ConsoleNewsReader'); + +// CFG: NEWS-MAIN-LIMIT +$cfg->setConfigEntry('news_main_limit', 5); + +// CFG: TESTS-PHP-REQUIREMENTS-FILTER +$cfg->setConfigEntry('tests_php_requirements_filter_class', 'CoreFramework\Tests\Filter\Requirements\TestsPhpRequirementsFilter'); -// [EOF] -?> +// CFG: TEST-CONFIGURATION-CLASSES-LOADABLE-TEST-FILTER-CLASS +$cfg->setConfigEntry('tests_configuration_classes_loadable_test_filter_class', 'CoreFramework\Tests\Filter\Configuration\Classes\TestConfigurationLoadableClassesFilter');