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