forked from nette/tester
-
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.
Merge pull request nette#219 from dg/src
/Tester changed to /src
- Loading branch information
Showing
53 changed files
with
99 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,2 @@ | ||
<?php | ||
|
||
/** | ||
* Test environment initialization. | ||
*/ | ||
|
||
require __DIR__ . '/Framework/Helpers.php'; | ||
require __DIR__ . '/Framework/Environment.php'; | ||
require __DIR__ . '/Framework/DataProvider.php'; | ||
require __DIR__ . '/Framework/Assert.php'; | ||
require __DIR__ . '/Framework/Dumper.php'; | ||
require __DIR__ . '/Framework/FileMock.php'; | ||
require __DIR__ . '/Framework/TestCase.php'; | ||
require __DIR__ . '/Framework/DomQuery.php'; | ||
require __DIR__ . '/CodeCoverage/Collector.php'; | ||
require __DIR__ . '/Runner/Job.php'; | ||
|
||
Tester\Environment::setup(); | ||
require __DIR__ . '/../src/bootstrap.php'; |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
|
||
require __DIR__ . '/tester.php'; | ||
require __DIR__ . '/../src/tester.php'; |
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 |
---|---|---|
@@ -1,34 +1,2 @@ | ||
<?php | ||
|
||
/** | ||
* Nette Tester. | ||
* Copyright (c) 2009 David Grudl (http://davidgrudl.com) | ||
*/ | ||
|
||
require __DIR__ . '/Runner/PhpInterpreter.php'; | ||
require __DIR__ . '/Runner/ZendPhpInterpreter.php'; | ||
require __DIR__ . '/Runner/HhvmPhpInterpreter.php'; | ||
require __DIR__ . '/Runner/Runner.php'; | ||
require __DIR__ . '/Runner/CliTester.php'; | ||
require __DIR__ . '/Runner/Job.php'; | ||
require __DIR__ . '/Runner/CommandLine.php'; | ||
require __DIR__ . '/Runner/TestHandler.php'; | ||
require __DIR__ . '/Runner/OutputHandler.php'; | ||
require __DIR__ . '/Runner/Output/Logger.php'; | ||
require __DIR__ . '/Runner/Output/TapPrinter.php'; | ||
require __DIR__ . '/Runner/Output/ConsolePrinter.php'; | ||
require __DIR__ . '/Runner/Output/JUnitPrinter.php'; | ||
require __DIR__ . '/Framework/Helpers.php'; | ||
require __DIR__ . '/Framework/Environment.php'; | ||
require __DIR__ . '/Framework/Assert.php'; | ||
require __DIR__ . '/Framework/Dumper.php'; | ||
require __DIR__ . '/Framework/DataProvider.php'; | ||
require __DIR__ . '/Framework/TestCase.php'; | ||
require __DIR__ . '/CodeCoverage/PhpParser.php'; | ||
require __DIR__ . '/CodeCoverage/Generators/AbstractGenerator.php'; | ||
require __DIR__ . '/CodeCoverage/Generators/HtmlGenerator.php'; | ||
require __DIR__ . '/CodeCoverage/Generators/CloverXMLGenerator.php'; | ||
|
||
|
||
$tester = new Tester\Runner\CliTester; | ||
die($tester->run()); | ||
require __DIR__ . '/../src/tester.php'; |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,18 @@ | ||
<?php | ||
|
||
/** | ||
* Test environment initialization. | ||
*/ | ||
|
||
require __DIR__ . '/Framework/Helpers.php'; | ||
require __DIR__ . '/Framework/Environment.php'; | ||
require __DIR__ . '/Framework/DataProvider.php'; | ||
require __DIR__ . '/Framework/Assert.php'; | ||
require __DIR__ . '/Framework/Dumper.php'; | ||
require __DIR__ . '/Framework/FileMock.php'; | ||
require __DIR__ . '/Framework/TestCase.php'; | ||
require __DIR__ . '/Framework/DomQuery.php'; | ||
require __DIR__ . '/CodeCoverage/Collector.php'; | ||
require __DIR__ . '/Runner/Job.php'; | ||
|
||
Tester\Environment::setup(); |
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,4 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
|
||
require __DIR__ . '/tester.php'; |
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,34 @@ | ||
<?php | ||
|
||
/** | ||
* Nette Tester. | ||
* Copyright (c) 2009 David Grudl (http://davidgrudl.com) | ||
*/ | ||
|
||
require __DIR__ . '/Runner/PhpInterpreter.php'; | ||
require __DIR__ . '/Runner/ZendPhpInterpreter.php'; | ||
require __DIR__ . '/Runner/HhvmPhpInterpreter.php'; | ||
require __DIR__ . '/Runner/Runner.php'; | ||
require __DIR__ . '/Runner/CliTester.php'; | ||
require __DIR__ . '/Runner/Job.php'; | ||
require __DIR__ . '/Runner/CommandLine.php'; | ||
require __DIR__ . '/Runner/TestHandler.php'; | ||
require __DIR__ . '/Runner/OutputHandler.php'; | ||
require __DIR__ . '/Runner/Output/Logger.php'; | ||
require __DIR__ . '/Runner/Output/TapPrinter.php'; | ||
require __DIR__ . '/Runner/Output/ConsolePrinter.php'; | ||
require __DIR__ . '/Runner/Output/JUnitPrinter.php'; | ||
require __DIR__ . '/Framework/Helpers.php'; | ||
require __DIR__ . '/Framework/Environment.php'; | ||
require __DIR__ . '/Framework/Assert.php'; | ||
require __DIR__ . '/Framework/Dumper.php'; | ||
require __DIR__ . '/Framework/DataProvider.php'; | ||
require __DIR__ . '/Framework/TestCase.php'; | ||
require __DIR__ . '/CodeCoverage/PhpParser.php'; | ||
require __DIR__ . '/CodeCoverage/Generators/AbstractGenerator.php'; | ||
require __DIR__ . '/CodeCoverage/Generators/HtmlGenerator.php'; | ||
require __DIR__ . '/CodeCoverage/Generators/CloverXMLGenerator.php'; | ||
|
||
|
||
$tester = new Tester\Runner\CliTester; | ||
die($tester->run()); |
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
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
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