示例#1
0
 /**
  * @expectedException RuntimeException
  */
 public function testException()
 {
     $cli = new Cli();
     $cli->setTempDir(sys_get_temp_dir());
     $cli->setLogger($this->getMockBuilder('Monolog\\Logger')->disableOriginalConstructor()->getMock());
     $code = Code::fromString('throw new \\Exception("test");');
     $result = $cli->run($code);
 }
示例#2
0
 /**
  * @return void
  * @covers \pFlow\Cli<extended>
  * @group pflow
  * @group unittest
  */
 public function testRun()
 {
     $_SERVER['argv'] = array('pflow', '--recursive', 'some_path');
     $analyzerMock = $this->getMock('\\pFlow\\AnalyzerInterface');
     $analyzerMock->expects($this->once())->method('setSources')->with($this->equalTo(array('some_path')), $this->isTrue());
     $cli = new Cli($analyzerMock, new \ezcConsoleInput());
     $cli->run();
 }
#!/usr/bin/env php
<?php 
/**
 *
 * @package phpBB Translation Validator
 * @copyright (c) 2014 phpBB Ltd.
 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
 *
 */
namespace Phpbb\TranslationValidator;

require 'vendor/autoload.php';
$app = new Cli();
$app->run();
示例#4
0
        //
        $cc = new Colors\Color();
        if (count($testClasses) == 0) {
            echo $cc("WARNING ")->red()->bold();
            echo $cc("  No classes have been named to be test Suites (Test????) - ")->reset();
            echo $cc(" is this correct !!")->white()->bold();
            echo "\n";
        } else {
            foreach ($runner->get_test_cases() as $obj) {
                $arr = $obj->get_tests();
                if (count($arr) == 0) {
                    echo $cc("WARNING")->red()->bold();
                    echo $cc(" class ")->reset();
                    echo $cc(get_class($obj))->cyan()->bold();
                    echo $cc(" has no tests method (test_???) - ")->reset();
                    echo $cc(" is this correct ")->white()->bold();
                    echo "\n ";
                }
            }
        }
        $runner->print_results();
    }
}
$cli = new Cli();
$cli->addOption()->shortName('c')->longname(LiteTestCommand::CONFIG_FILE)->key(LiteTestCommand::CONFIG_FILE)->valueRequired(true)->setIsFile()->description("json config file");
$cli->addOption()->shortName('b')->longname(LiteTestCommand::BOOTSTRAP_FILE)->key(LiteTestCommand::BOOTSTRAP_FILE)->valueRequired(true)->setIsFile()->description("php bootstrap file");
$cli->addOption()->shortName("v")->key('verbose')->valueRequired(false)->description("verbose")->valueRequired(false);
$cli->addOption()->shortName("d")->key('debug')->valueRequired(false)->description("debug")->valueRequired(false);
$cli->command(new LiteTestCommand())->name("LiteTest")->description("Run php test cases using LiteTest framework")->usage("[options] [arguments]")->help("Runs php test cases with LiteTest framework");
$cli->run($argv);