{ "manifests": { "codeception/codeception": { "manifest": { "copy-from-recipe": { "codeception.yml": "codeception.yml", "tests/": "tests/" }, "post-install-output": [ "File codeception.yml created <- global configuration", "tests/unit created <- unit tests", "tests/unit.suite.yml written <- unit tests suite configuration", "tests/functional created <- functional tests", "tests/functional.suite.yml written <- functional tests suite configuration", "tests/acceptance created <- acceptance tests", "tests/acceptance.suite.yml written <- acceptance tests suite configuration", "Codeception is installed for acceptance, functional, and unit testing", "Next steps:", "1. Edit tests/acceptance.suite.yml to set the url of your application. Change PhpBrowser to WebDriver to enable browser testing.", "2. Edit tests/functional.suite.yml to enable Doctrine module if needed.", "3. Create your first acceptance test using vendor/bin/codecept g:cest acceptance First", "4. Write your first test in tests/acceptance/FirstCest.php", "5. Run tests using: vendor/bin/codecept run" ] }, "files": { "tests/_data/.gitignore": { "contents": [ "" ], "executable": false }, "tests/acceptance/.gitignore": { "contents": [ "" ], "executable": false }, "tests/_output/.gitignore": { "contents": [ "*", "!.gitignore", "" ], "executable": false }, "tests/unit/.gitignore": { "contents": [ "" ], "executable": false }, "tests/acceptance.suite.yml": { "contents": [ "# Codeception Test Suite Configuration", "#", "# Suite for acceptance tests.", "# Perform tests in browser using the WebDriver or PhpBrowser.", "# If you need both WebDriver and PHPBrowser tests - create a separate suite.", "", "actor: AcceptanceTester", "modules:", " enabled:", " - PhpBrowser:", " url: http://localhost:8000", " - \\App\\Tests\\Helper\\Acceptance", "" ], "executable": false }, "tests/functional/.gitignore": { "contents": [ "" ], "executable": false }, "tests/_support/FunctionalTester.php": { "contents": [ "