| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class TranslationServiceProviderTest extends TestCase |
||
| 14 | { |
||
| 15 | public function testRegister() |
||
| 16 | { |
||
| 17 | (new TranslationServiceProvider($this->app))->register(); |
||
| 18 | |||
| 19 | $this->assertSame('en', config('app.locale')); |
||
| 20 | $this->assertSame('en', config('app.fallback_locale')); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function testBoot() |
||
| 24 | { |
||
| 25 | (new TranslationServiceProvider($this->app))->boot(); |
||
| 26 | |||
| 27 | $this->assertTrue(true); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function testValidation() |
||
| 33 | } |
||
| 34 | } |
||
| 35 |