You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace tests\codeception\common\unit;
-
- //use \Tests\Support\UnitTester;
-
- use domain\Producer\Producer\Producer;
- use domain\Producer\Producer\ProducerModule;
- use tests\codeception\common\UnitTester;
-
- class ExampleTest extends \Codeception\Test\Unit
- {
- protected UnitTester $tester;
-
- protected function _before()
- {
- }
-
- public function testMe()
- {
- $producerModule = ProducerModule::getInstance();
- $producer = $producerModule->getBuilder()->instanciateProducer();
- $this->assertTrue($producer instanceof Producer, 'Producer instancié');
- }
- }
|