public function testExtract()
 {
     $data = ['templateId' => 1, 'name' => 'Test', 'params' => 'title=Test', 'body' => file_get_contents(__DIR__ . '/../TestAssets/body.phtml')];
     $hydrator = new Template();
     $model = $hydrator->hydrate($data, new TemplateModel());
     $this->assertSame($data, $hydrator->extract($model));
 }