I have upgraded my codeception version from 2.1.7
to 2.2.5.
In one integrational test case I am accessing current environment using:
$this->env
It was working fine in 2.1.7
version but in 2.2.5
version I am getting error:
Undefined property: tests\integrational\AutoBillerTest::$env
I checked in library and found that
vendor/codeception/codeception/src/Codeception/TestCase/Shared/Actor.php
file is not present in current version but it was present in previous version. This Actor class contains $env variable.
I tried to generate actor class using command:
$codecept build
Still that Actor class is not getting generated.
Test formats were completely refactored in Codeception 2.2 and that Actor trait is gone.
In 2.2 enviroment can be retrieved from \Codeception\Scenario in Cept and Cest formats and from \Codeception\Metadata in Unit format (Scenario gets it from Metadata too).
Unit format:
In Cept format $scenario variable is always available, so you can simply do
In Cest format
$scenario
variable must be injectedUsage of Scenario is documented.