Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function testBundleParameters() |
||
37 | { |
||
38 | /** @var Loader $loader */ |
||
39 | $loader = $this->container->getByType(Loader::class); |
||
40 | $this->assertInstanceOf(Loader::class, $loader); |
||
41 | |||
42 | $fakerProcessorMethod = $loader->getFakerProcessorMethod(); |
||
43 | $this->assertSame( |
||
44 | 'cs_CZ', |
||
45 | PHPUnit_Framework_Assert::getObjectAttribute($fakerProcessorMethod, 'defaultLocale') |
||
46 | ); |
||
47 | } |
||
48 | } |
||
49 |