12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of the Carbon package.
- *
- * (c) Brian Nesbitt <brian@nesbot.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Tests\Carbon;
- use Carbon\Carbon;
- use Tests\AbstractTestCase;
- class SettingsTest extends AbstractTestCase
- {
- public function testSettings()
- {
- $paris = Carbon::parse('2018-01-31 00:00:00')->settings([
- 'timezone' => 'Europe/Paris',
- 'locale' => 'fr_FR',
- 'monthOverflow' => true,
- 'yearOverflow' => true,
- ]);
- $this->assertEquals([
- 'timezone' => 'Europe/Paris',
- 'locale' => 'fr_FR',
- 'monthOverflow' => true,
- 'yearOverflow' => true,
- ], $paris->getSettings());
- $saoPaulo = Carbon::parse('2018-01-31 00:00:00')->settings([
- 'timezone' => 'America/Sao_Paulo',
- 'locale' => 'pt',
- 'monthOverflow' => false,
- 'yearOverflow' => false,
- ]);
- $this->assertEquals([
- 'timezone' => 'America/Sao_Paulo',
- 'locale' => 'pt',
- 'monthOverflow' => false,
- 'yearOverflow' => false,
- ], $saoPaulo->getSettings());
- $this->assertSame('2 jours 1 heure avant', $paris->addMonth()->from(Carbon::parse('2018-03-05', 'UTC'), null, false, 3));
- $this->assertSame('4 dias 21 horas antes', $saoPaulo->addMonth()->from(Carbon::parse('2018-03-05', 'UTC'), null, false, 3));
- $this->assertSame('2 jours et une heure avant', $paris->from(Carbon::parse('2018-03-05', 'UTC'), ['parts' => 3, 'join' => true, 'aUnit' => true]));
- }
- }
|