diff --git a/tests/Unit/Dto/TranslationTest.php b/tests/Unit/Dto/TranslationTest.php new file mode 100644 index 000000000..b48e49445 --- /dev/null +++ b/tests/Unit/Dto/TranslationTest.php @@ -0,0 +1,29 @@ +assertSame('en', $translation->getLocale()); + $this->assertIsArray($translation->getKeys()); + $this->assertCount(1, $translation->getKeys()); + $this->assertContains('login', $translation->getKeys()); + } +} \ No newline at end of file