Exemplo n.º 1
0
 public function testLocale()
 {
     $this->translatable->setLocales([$locale = 'fr_FR']);
     $this->translatable->setFallbackLocale('en_EN');
     $this->translatable->setTranslationClass(ConcreteTranslatableTranslation::class);
     $this->translatable->getTranslation(true);
     $this->assertSame($locale, $this->translatable->getLocale());
 }