├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── composer.json ├── docs └── screenshot.png ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml ├── rector.php ├── src ├── ConsoleUnusedStepDefinitionsPrinter.php ├── Extension.php ├── UnusedStepDefinitionsChecker.php └── UnusedStepDefinitionsPrinter.php └── tests ├── BehatExtensionTest.php ├── TestingBehatExtension.php ├── TestingPrinter.php └── fixtures ├── behat.yml ├── expectations ├── custom_printer.txt ├── default.txt ├── filter_bc.txt ├── filter_exclude.txt ├── filter_include.txt ├── filter_include_exclude.txt ├── filter_inheritance.txt └── ignore_pattern_aliases.txt └── features ├── bootstrap ├── FeatureContext.php └── FeatureContextBase.php └── test.feature /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/composer.json -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/phpunit.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/rector.php -------------------------------------------------------------------------------- /src/ConsoleUnusedStepDefinitionsPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/src/ConsoleUnusedStepDefinitionsPrinter.php -------------------------------------------------------------------------------- /src/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/src/Extension.php -------------------------------------------------------------------------------- /src/UnusedStepDefinitionsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/src/UnusedStepDefinitionsChecker.php -------------------------------------------------------------------------------- /src/UnusedStepDefinitionsPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/src/UnusedStepDefinitionsPrinter.php -------------------------------------------------------------------------------- /tests/BehatExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/BehatExtensionTest.php -------------------------------------------------------------------------------- /tests/TestingBehatExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/TestingBehatExtension.php -------------------------------------------------------------------------------- /tests/TestingPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/TestingPrinter.php -------------------------------------------------------------------------------- /tests/fixtures/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/behat.yml -------------------------------------------------------------------------------- /tests/fixtures/expectations/custom_printer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/expectations/custom_printer.txt -------------------------------------------------------------------------------- /tests/fixtures/expectations/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/expectations/default.txt -------------------------------------------------------------------------------- /tests/fixtures/expectations/filter_bc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/expectations/filter_bc.txt -------------------------------------------------------------------------------- /tests/fixtures/expectations/filter_exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/expectations/filter_exclude.txt -------------------------------------------------------------------------------- /tests/fixtures/expectations/filter_include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/expectations/filter_include.txt -------------------------------------------------------------------------------- /tests/fixtures/expectations/filter_include_exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/expectations/filter_include_exclude.txt -------------------------------------------------------------------------------- /tests/fixtures/expectations/filter_inheritance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/expectations/filter_inheritance.txt -------------------------------------------------------------------------------- /tests/fixtures/expectations/ignore_pattern_aliases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/expectations/ignore_pattern_aliases.txt -------------------------------------------------------------------------------- /tests/fixtures/features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /tests/fixtures/features/bootstrap/FeatureContextBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/features/bootstrap/FeatureContextBase.php -------------------------------------------------------------------------------- /tests/fixtures/features/test.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicwortel/behat-unused-step-definitions-extension/HEAD/tests/fixtures/features/test.feature --------------------------------------------------------------------------------