コード例 #1
0
ファイル: EntityTest.php プロジェクト: spira/api-core
 public function testSetTimeCarbon()
 {
     $entity = new TestEntity();
     $entity->setAttribute(TestEntity::UPDATED_AT, '10-10-2016');
     $this->assertInstanceOf(Carbon::class, $entity->getAttribute(TestEntity::UPDATED_AT));
 }