Browse Source

Premier test

feature/souke
Guillaume Bourgeois 9 months ago
parent
commit
916306ceb1
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      tests/codeception/common/unit/ExampleTest.php

+ 3
- 2
tests/codeception/common/unit/ExampleTest.php View File

@@ -5,6 +5,7 @@ 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
@@ -17,8 +18,8 @@ class ExampleTest extends \Codeception\Test\Unit

public function testMe()
{
$producerContainer = ProducerContainer::getInstance();
$producer = $producerContainer->getBuilder()->instanciateProducer();
$producerModule = ProducerModule::getInstance();
$producer = $producerModule->getBuilder()->instanciateProducer();
$this->assertTrue($producer instanceof Producer, 'Producer instancié');
}
}

Loading…
Cancel
Save