Gc\Layout\ModelTest::testFromArray PHP Method

testFromArray() public method

Test
public testFromArray ( ) : void
return void
    public function testFromArray()
    {
        $array = array('id' => 1, 'name' => 'String', 'identifier' => 'string', 'description' => 'Description', 'content' => 'Content', 'updated_at' => date('Y-m-d H:i:s'));
        $model = $this->object->fromArray($array);
        $this->assertEquals(1, $model->getId());
    }