Files
symfony-flex-recipes-contrib/codeception.codeception.2.3.json
T
github-action botandgithub-action bot 7d78e147a4 Update Flex endpoint
2021-09-20 16:37:35 +00:00

126 lines
9.0 KiB
JSON

{
"locks": {
"codeception/codeception": {
"version": "2.3",
"recipe": {
"repo": "2.3",
"branch": "master",
"version": "2.3",
"ref": "30798e46831f4fc641fca83c0423918518901cd7"
}
}
},
"manifests": {
"codeception/codeception": {
"repository": "github.com/symfony/recipes-contrib",
"package": "codeception/codeception",
"version": "2.3",
"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",
"<info>Codeception is installed for acceptance, functional, and unit testing</info>",
"<options=bold>Next steps:</options=bold>",
"1. Edit <options=bold>tests/acceptance.suite.yml</options=bold> to set the url of your application. Change PhpBrowser to WebDriver to enable browser testing.",
"2. Edit <options=bold>tests/functional.suite.yml</options=bold> to enable Doctrine module if needed.",
"3. Create your first acceptance test using <comment>vendor/bin/codecept g:cest acceptance First</comment>",
"4. Write your first test in <options=bold>tests/acceptance/FirstCest.php</options=bold>",
"5. Run tests using: <comment>vendor/bin/codecept run</comment>"
]
},
"files": {
"codeception.yml": {
"contents": "namespace: App\\Tests\npaths:\n tests: tests\n output: tests/_output\n data: tests/_data\n support: tests/_support\n envs: tests/_envs\nactor_suffix: Tester\nextensions:\n enabled:\n - Codeception\\Extension\\RunFailed\nparams:\n - .env\n",
"executable": false,
"encoding": ""
},
"tests/unit/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
},
"tests/_output/.gitignore": {
"contents": "*\n!.gitignore\n",
"executable": false,
"encoding": ""
},
"tests/_data/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
},
"tests/unit.suite.yml": {
"contents": "# Codeception Test Suite Configuration\n#\n# Suite for unit or integration tests.\n\nactor: UnitTester\nmodules:\n enabled:\n - Asserts\n - \\App\\Tests\\Helper\\Unit\n",
"executable": false,
"encoding": ""
},
"tests/functional/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
},
"tests/functional.suite.yml": {
"contents": "# Codeception Test Suite Configuration\n#\n# Suite for functional tests\n# Emulate web requests and make application process them\n# Include one of framework modules (Symfony2, Yii2, Laravel5) to use it\n# Remove this suite if you don't use frameworks\n\nactor: FunctionalTester\nmodules:\n enabled:\n - Symfony:\n app_path: 'src'\n environment: 'test'\n# - Doctrine2:\n# depends: Symfony\n# cleanup: true\n - \\App\\Tests\\Helper\\Functional\n",
"executable": false,
"encoding": ""
},
"tests/acceptance.suite.yml": {
"contents": "# Codeception Test Suite Configuration\n#\n# Suite for acceptance tests.\n# Perform tests in browser using the WebDriver or PhpBrowser.\n# If you need both WebDriver and PHPBrowser tests - create a separate suite.\n\nactor: AcceptanceTester\nmodules:\n enabled:\n - PhpBrowser:\n url: http://localhost:8000\n - \\App\\Tests\\Helper\\Acceptance\n",
"executable": false,
"encoding": ""
},
"tests/acceptance/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
},
"tests/_support/_generated/.gitignore": {
"contents": "*\n!.gitignore\n",
"executable": false,
"encoding": ""
},
"tests/_support/AcceptanceTester.php": {
"contents": "<?php\nnamespace App\\Tests;\n\n/**\n * Inherited Methods\n * @method void wantToTest($text)\n * @method void wantTo($text)\n * @method void execute($callable)\n * @method void expectTo($prediction)\n * @method void expect($prediction)\n * @method void amGoingTo($argumentation)\n * @method void am($role)\n * @method void lookForwardTo($achieveValue)\n * @method void comment($description)\n * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)\n *\n * @SuppressWarnings(PHPMD)\n*/\nclass AcceptanceTester extends \\Codeception\\Actor\n{\n use _generated\\AcceptanceTesterActions;\n\n /**\n * Define custom actions here\n */\n}\n",
"executable": false,
"encoding": ""
},
"tests/_support/FunctionalTester.php": {
"contents": "<?php\nnamespace App\\Tests;\n\n/**\n * Inherited Methods\n * @method void wantToTest($text)\n * @method void wantTo($text)\n * @method void execute($callable)\n * @method void expectTo($prediction)\n * @method void expect($prediction)\n * @method void amGoingTo($argumentation)\n * @method void am($role)\n * @method void lookForwardTo($achieveValue)\n * @method void comment($description)\n * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)\n *\n * @SuppressWarnings(PHPMD)\n*/\nclass FunctionalTester extends \\Codeception\\Actor\n{\n use _generated\\FunctionalTesterActions;\n\n /**\n * Define custom actions here\n */\n}\n",
"executable": false,
"encoding": ""
},
"tests/_support/UnitTester.php": {
"contents": "<?php\nnamespace App\\Tests;\n\n/**\n * Inherited Methods\n * @method void wantToTest($text)\n * @method void wantTo($text)\n * @method void execute($callable)\n * @method void expectTo($prediction)\n * @method void expect($prediction)\n * @method void amGoingTo($argumentation)\n * @method void am($role)\n * @method void lookForwardTo($achieveValue)\n * @method void comment($description)\n * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)\n *\n * @SuppressWarnings(PHPMD)\n*/\nclass UnitTester extends \\Codeception\\Actor\n{\n use _generated\\UnitTesterActions;\n\n /**\n * Define custom actions here\n */\n}\n",
"executable": false,
"encoding": ""
},
"tests/_support/Helper/Functional.php": {
"contents": "<?php\nnamespace App\\Tests\\Helper;\n\n// here you can define custom actions\n// all public methods declared in helper class will be available in $I\n\nclass Functional extends \\Codeception\\Module\n{\n\n}\n",
"executable": false,
"encoding": ""
},
"tests/_support/Helper/Acceptance.php": {
"contents": "<?php\nnamespace App\\Tests\\Helper;\n\n// here you can define custom actions\n// all public methods declared in helper class will be available in $I\n\nclass Acceptance extends \\Codeception\\Module\n{\n\n}\n",
"executable": false,
"encoding": ""
},
"tests/_support/Helper/Unit.php": {
"contents": "<?php\nnamespace App\\Tests\\Helper;\n\n// here you can define custom actions\n// all public methods declared in helper class will be available in $I\n\nclass Unit extends \\Codeception\\Module\n{\n\n}\n",
"executable": false,
"encoding": ""
}
},
"origin": "codeception/codeception:2.3@github.com/symfony/recipes-contrib:master",
"is_contrib": true
}
}
}