Skip to content

Autoload context classes of Behat extension.

License

Notifications You must be signed in to change notification settings

BR0kEN-/environment-loader

Repository files navigation

Behat Environment Loader

This tool - is a Behat library for auto loading context classes of extension to context environment.

Build Status Coverage Status Quality Score Total Downloads Latest Stable Version License

Usage

See examples here:

namespace Behat\ExampleExtension\ServiceContainer;

// ...

class ExampleExtension implements Extension
{
    // ...
    
    /**
     * {@inheritdoc}
     */
    public function load(ContainerBuilder $container, array $config)
    {
        // Load all context classes from "Behat\ExampleExtension\Context\*" namespace.
        $loader = new EnvironmentLoader($this, $container, $config);
        // Your own environment reader can be easily added.
        // $loader->addEnvironmentReader();
        $loader->load();
    }
    
    // ...
}

Here is a good "how to" about extension creation and usage of this library.