Exemplo n.º 1
0
 public function test()
 {
     $trait = new TraitImpl();
     $trait->setId(123);
     $this->assertEquals(123, $trait->getId());
 }
Exemplo n.º 2
0
 public function testSetDateCreatedNow()
 {
     $trait = new TraitImpl();
     $trait->setDateCreatedNow();
     $this->assertInstanceOf(\DateTime::class, $trait->getDateCreated());
 }