Skip to content

Commit

Permalink
[stagehandtestrunner] Upgraded Stagehand_TestRunner to 3.6.1. (Issue #35
Browse files Browse the repository at this point in the history
)
  • Loading branch information
iteman committed Mar 26, 2013
1 parent c58ff0e commit 80eb4bf
Show file tree
Hide file tree
Showing 573 changed files with 9,768 additions and 8,302 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/bin/
/target/
/resources/php/.configsnapshots/*
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
<pearconfig version="1.0"><ext_dir>/usr/lib/php5/20090626</ext_dir><cfg_dir>resources/php/cfg</cfg_dir><doc_dir>resources/php/docs</doc_dir><bin_dir>resources/php/bin</bin_dir><www_dir>resources/php/www</www_dir><test_dir>resources/php/tests</test_dir><src_dir>resources/php/src</src_dir><php_bin>/usr/bin/php</php_bin><php_ini></php_ini><php_prefix></php_prefix><php_suffix></php_suffix></pearconfig>
<pearconfig version="1.0"><ext_dir>/usr/lib/php5/20100525</ext_dir><cfg_dir>resources/php/cfg</cfg_dir><doc_dir>resources/php/docs</doc_dir><bin_dir>resources/php/bin</bin_dir><www_dir>resources/php/www</www_dir><test_dir>resources/php/tests</test_dir><src_dir>resources/php/src</src_dir><php_bin>/usr/bin/php</php_bin><php_ini>/home/iteman/site-php/config/5.4/php-cli.ini</php_ini><php_prefix></php_prefix><php_suffix></php_suffix></pearconfig>

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since File available since Release 3.0.0
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since File available since Release 3.0.0
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2012 Fabien Potencier
Copyright (c) 2004-2013 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ Resources

You can run the unit tests with the following command:

phpunit

If you also want to run the unit tests that depend on other Symfony
Components, install dev dependencies before running PHPUnit:

php composer.phar install --dev
$ cd path/to/Symfony/Component/ClassLoader/
$ composer.phar install --dev
$ phpunit
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,15 @@
"php": ">=5.3.3"
},
"require-dev": {
"symfony/finder": "2.1.*"
"symfony/finder": "~2.0"
},
"autoload": {
"psr-0": { "Symfony\\Component\\ClassLoader": "" }
"psr-0": { "Symfony\\Component\\ClassLoader\\": "" }
},
"target-dir": "Symfony/Component/ClassLoader",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
"dev-master": "2.2-dev"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2012 Fabien Potencier
Copyright (c) 2004-2013 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ Resources

You can run the unit tests with the following command:

phpunit
$ cd path/to/Symfony/Component/Config/
$ composer.phar install --dev
$ phpunit

Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"php": ">=5.3.3"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Config": "" }
"psr-0": { "Symfony\\Component\\Config\\": "" }
},
"target-dir": "Symfony/Component/Config",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
"dev-master": "2.2-dev"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2012 Fabien Potencier
Copyright (c) 2004-2013 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,19 @@ output abstractions (so that you can easily unit-test your commands),
validation, automatic help messages, ...

Tests
---------
-----

You can run the unit tests with the following command:

phpunit
$ cd path/to/Symfony/Component/Console/
$ composer.phar install --dev
$ phpunit

Third Party
-----------

`Resources/bin/hiddeninput.exe` is a third party binary provided within this
component. Find sources and license at https://github.com/Seldaek/hidden-input.

Resources
---------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"php": ">=5.3.3"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Console": "" }
"psr-0": { "Symfony\\Component\\Console\\": "" }
},
"target-dir": "Symfony/Component/Console",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
"dev-master": "2.2-dev"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2012 Fabien Potencier
Copyright (c) 2004-2013 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ Resources

You can run the unit tests with the following command:

phpunit

If you also want to run the unit tests that depend on other Symfony
Components, install dev dependencies before running PHPUnit:

php composer.phar install --dev
$ cd path/to/Symfony/Component/DependencyInjection/
$ composer.phar install --dev
$ phpunit
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@
"php": ">=5.3.3"
},
"require-dev": {
"symfony/yaml": "2.1.*",
"symfony/config": "2.1.*"
"symfony/yaml": "~2.0",
"symfony/config": ">=2.2,<2.3-dev"
},
"suggest": {
"symfony/yaml": "2.1.*",
"symfony/config": "2.1.*"
"symfony/yaml": "2.2.*",
"symfony/config": "2.2.*"
},
"autoload": {
"psr-0": { "Symfony\\Component\\DependencyInjection": "" }
"psr-0": { "Symfony\\Component\\DependencyInjection\\": "" }
},
"target-dir": "Symfony/Component/DependencyInjection",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
"dev-master": "2.2-dev"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2012 Fabien Potencier
Copyright (c) 2004-2013 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ Resources

You can run the unit tests with the following command:

phpunit
$ cd path/to/Symfony/Component/Finder/
$ composer.phar install --dev
$ phpunit

Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"php": ">=5.3.3"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Finder": "" }
"psr-0": { "Symfony\\Component\\Finder\\": "" }
},
"target-dir": "Symfony/Component/Finder",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
"dev-master": "2.2-dev"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2012 Fabien Potencier
Copyright (c) 2004-2013 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,6 @@ Resources

You can run the unit tests with the following command:

phpunit
$ cd path/to/Symfony/Component/XXX/
$ composer.phar install --dev
$ phpunit
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"php": ">=5.3.3"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Process": "" }
"psr-0": { "Symfony\\Component\\Process\\": "" }
},
"target-dir": "Symfony/Component/Process",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
"dev-master": "2.2-dev"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2012 Fabien Potencier
Copyright (c) 2004-2013 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ Resources

You can run the unit tests with the following command:

phpunit
$ cd path/to/Symfony/Component/Yaml/
$ composer.phar install --dev
$ phpunit
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"php": ">=5.3.3"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Yaml": "" }
"psr-0": { "Symfony\\Component\\Yaml\\": "" }
},
"target-dir": "Symfony/Component/Yaml",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
"dev-master": "2.2-dev"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since File available since Release 3.0.0
*/

Expand All @@ -44,7 +44,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since Class available since Release 3.0.0
*/
class Terminal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since File available since Release 3.0.0
*/

Expand All @@ -49,7 +49,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since Class available since Release 3.0.0
*/
class Application extends \Symfony\Component\Console\Application
Expand All @@ -62,7 +62,7 @@ class Application extends \Symfony\Component\Console\Application
public function __construct()
{
$this->commandRepository = new CommandRepository();
parent::__construct('Stagehand_TestRunner', '3.6.0');
parent::__construct('Stagehand_TestRunner', '3.6.1');
$this->setAutoExit(false);

// For compatibility with Symfony 2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since File available since Release 3.0.0
*/

Expand All @@ -50,7 +50,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since Class available since Release 3.0.0
*/
class CIUnitCommand extends PHPUnitCommand
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since File available since Release 3.0.0
*/

Expand All @@ -50,7 +50,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since Class available since Release 3.0.0
*/
class CakePHPCommand extends SimpleTestCommand
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since File available since Release 3.0.0
*/

Expand All @@ -43,7 +43,7 @@
* @package Stagehand_TestRunner
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @version Release: 3.6.0
* @version Release: 3.6.1
* @since Class available since Release 3.0.0
*/
abstract class Command extends \Symfony\Component\Console\Command\Command
Expand Down
Loading

0 comments on commit 80eb4bf

Please sign in to comment.