behat/environment-loader

Environment processor and contexts autoloader

1.2 2017-11-17 08:24 UTC

This package is auto-updated.

Last update: 2024-04-10 20:25:19 UTC


README

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.