Example #1
0
 public function testShouldCheckMappedValues()
 {
     $this->assertFalse(Collection::getMapped(false));
     $product = new Product();
     $product->setName('Product 1');
     $product->setPrice(100);
     $product->setIsActive(true);
     $product->setCreatedAt(time());
     $product->save();
     $this->assertInstanceOf(Product::class, Product::getMapped($product));
 }