Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <?php /* * 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. */ use Carbon\Carbon; class CreateFromTimeTest extends TestFixture { public function testCreateFromDateWithDefaults() { $d = Carbon::createFromTime(); $this ->assertSame( $d ->timestamp, Carbon::create(null, null, null, null, null, null)->timestamp); } public function testCreateFromDate() { $d = Carbon::createFromTime(23, 5, 21); $this ->assertCarbon( $d , Carbon::now()->year, Carbon::now()->month, Carbon::now()->day, 23, 5, 21); } public function testCreateFromTimeWithHour() { $d = Carbon::createFromTime(22); $this ->assertSame(22, $d ->hour); $this ->assertSame(0, $d ->minute); $this ->assertSame(0, $d ->second); } public function testCreateFromTimeWithMinute() { $d = Carbon::createFromTime(null, 5); $this ->assertSame(5, $d ->minute); } public function testCreateFromTimeWithSecond() { $d = Carbon::createFromTime(null, null, 21); $this ->assertSame(21, $d ->second); } public function testCreateFromTimeWithDateTimeZone() { $d = Carbon::createFromTime(12, 0, 0, new \DateTimeZone( 'Europe/London' )); $this ->assertCarbon( $d , Carbon::now()->year, Carbon::now()->month, Carbon::now()->day, 12, 0, 0); $this ->assertSame( 'Europe/London' , $d ->tzName); } public function testCreateFromTimeWithTimeZoneString() { $d = Carbon::createFromTime(12, 0, 0, 'Europe/London' ); $this ->assertCarbon( $d , Carbon::now()->year, Carbon::now()->month, Carbon::now()->day, 12, 0, 0); $this ->assertSame( 'Europe/London' , $d ->tzName); } } |