├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── release.yml └── workflows │ ├── build.yml │ └── labels-verify.yml ├── .gitignore ├── LICENSE ├── README.md ├── codeception-report.yml ├── codeception.yml ├── composer.json ├── phpcs.xml.dist ├── psalm.xml.dist ├── src ├── AllureCodeception.php ├── Internal │ ├── ArgumentAsString.php │ ├── CeptInfoBuilder.php │ ├── CeptProvider.php │ ├── CestInfoBuilder.php │ ├── CestProvider.php │ ├── DefaultThreadDetector.php │ ├── GherkinInfoBuilder.php │ ├── GherkinProvider.php │ ├── StepStartInfo.php │ ├── SuiteInfo.php │ ├── SuiteProvider.php │ ├── TestInfo.php │ ├── TestInfoBuilderInterface.php │ ├── TestInfoProvider.php │ ├── TestLifecycle.php │ ├── TestLifecycleInterface.php │ ├── TestStartInfo.php │ ├── UnitInfoBuilder.php │ ├── UnitProvider.php │ └── UnknownInfoBuilder.php ├── Setup │ └── ThreadDetectorInterface.php └── StatusDetector.php └── test ├── codeception-report ├── _support │ ├── AcceptanceTester.php │ ├── FunctionalTester.php │ └── UnitTester.php ├── acceptance.suite.yml ├── acceptance │ └── sample.feature ├── functional.suite.yml ├── functional │ ├── BasicScenarioCept.php │ ├── ClassTitleCest.php │ ├── CustomizedScenarioCept.php │ ├── NestedStepsCest.php │ ├── NoClassTitleCest.php │ └── ScenarioWithLegacyAnnotationsCept.php ├── unit.suite.yml └── unit │ ├── AnnotationTest.php │ ├── DataProviderTest.php │ └── StepsTest.php └── codeception ├── _support └── UnitTester.php ├── report-check.suite.yml ├── report-check └── ReportTest.php ├── unit.suite.yml └── unit └── Internal ├── ArgumentAsStringTest.php └── CestProviderTest.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/labels-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/.github/workflows/labels-verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/README.md -------------------------------------------------------------------------------- /codeception-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/codeception-report.yml -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /psalm.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/psalm.xml.dist -------------------------------------------------------------------------------- /src/AllureCodeception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/AllureCodeception.php -------------------------------------------------------------------------------- /src/Internal/ArgumentAsString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/ArgumentAsString.php -------------------------------------------------------------------------------- /src/Internal/CeptInfoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/CeptInfoBuilder.php -------------------------------------------------------------------------------- /src/Internal/CeptProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/CeptProvider.php -------------------------------------------------------------------------------- /src/Internal/CestInfoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/CestInfoBuilder.php -------------------------------------------------------------------------------- /src/Internal/CestProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/CestProvider.php -------------------------------------------------------------------------------- /src/Internal/DefaultThreadDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/DefaultThreadDetector.php -------------------------------------------------------------------------------- /src/Internal/GherkinInfoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/GherkinInfoBuilder.php -------------------------------------------------------------------------------- /src/Internal/GherkinProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/GherkinProvider.php -------------------------------------------------------------------------------- /src/Internal/StepStartInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/StepStartInfo.php -------------------------------------------------------------------------------- /src/Internal/SuiteInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/SuiteInfo.php -------------------------------------------------------------------------------- /src/Internal/SuiteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/SuiteProvider.php -------------------------------------------------------------------------------- /src/Internal/TestInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/TestInfo.php -------------------------------------------------------------------------------- /src/Internal/TestInfoBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/TestInfoBuilderInterface.php -------------------------------------------------------------------------------- /src/Internal/TestInfoProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/TestInfoProvider.php -------------------------------------------------------------------------------- /src/Internal/TestLifecycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/TestLifecycle.php -------------------------------------------------------------------------------- /src/Internal/TestLifecycleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/TestLifecycleInterface.php -------------------------------------------------------------------------------- /src/Internal/TestStartInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/TestStartInfo.php -------------------------------------------------------------------------------- /src/Internal/UnitInfoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/UnitInfoBuilder.php -------------------------------------------------------------------------------- /src/Internal/UnitProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/UnitProvider.php -------------------------------------------------------------------------------- /src/Internal/UnknownInfoBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Internal/UnknownInfoBuilder.php -------------------------------------------------------------------------------- /src/Setup/ThreadDetectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/Setup/ThreadDetectorInterface.php -------------------------------------------------------------------------------- /src/StatusDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/src/StatusDetector.php -------------------------------------------------------------------------------- /test/codeception-report/_support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/_support/AcceptanceTester.php -------------------------------------------------------------------------------- /test/codeception-report/_support/FunctionalTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/_support/FunctionalTester.php -------------------------------------------------------------------------------- /test/codeception-report/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/_support/UnitTester.php -------------------------------------------------------------------------------- /test/codeception-report/acceptance.suite.yml: -------------------------------------------------------------------------------- 1 | 2 | actor: AcceptanceTester 3 | -------------------------------------------------------------------------------- /test/codeception-report/acceptance/sample.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/acceptance/sample.feature -------------------------------------------------------------------------------- /test/codeception-report/functional.suite.yml: -------------------------------------------------------------------------------- 1 | 2 | actor: FunctionalTester -------------------------------------------------------------------------------- /test/codeception-report/functional/BasicScenarioCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/functional/BasicScenarioCept.php -------------------------------------------------------------------------------- /test/codeception-report/functional/ClassTitleCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/functional/ClassTitleCest.php -------------------------------------------------------------------------------- /test/codeception-report/functional/CustomizedScenarioCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/functional/CustomizedScenarioCept.php -------------------------------------------------------------------------------- /test/codeception-report/functional/NestedStepsCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/functional/NestedStepsCest.php -------------------------------------------------------------------------------- /test/codeception-report/functional/NoClassTitleCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/functional/NoClassTitleCest.php -------------------------------------------------------------------------------- /test/codeception-report/functional/ScenarioWithLegacyAnnotationsCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/functional/ScenarioWithLegacyAnnotationsCept.php -------------------------------------------------------------------------------- /test/codeception-report/unit.suite.yml: -------------------------------------------------------------------------------- 1 | 2 | actor: UnitTester 3 | -------------------------------------------------------------------------------- /test/codeception-report/unit/AnnotationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/unit/AnnotationTest.php -------------------------------------------------------------------------------- /test/codeception-report/unit/DataProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/unit/DataProviderTest.php -------------------------------------------------------------------------------- /test/codeception-report/unit/StepsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception-report/unit/StepsTest.php -------------------------------------------------------------------------------- /test/codeception/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception/_support/UnitTester.php -------------------------------------------------------------------------------- /test/codeception/report-check.suite.yml: -------------------------------------------------------------------------------- 1 | 2 | actor: UnitTester 3 | -------------------------------------------------------------------------------- /test/codeception/report-check/ReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception/report-check/ReportTest.php -------------------------------------------------------------------------------- /test/codeception/unit.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception/unit.suite.yml -------------------------------------------------------------------------------- /test/codeception/unit/Internal/ArgumentAsStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception/unit/Internal/ArgumentAsStringTest.php -------------------------------------------------------------------------------- /test/codeception/unit/Internal/CestProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-codeception/HEAD/test/codeception/unit/Internal/CestProviderTest.php --------------------------------------------------------------------------------