10    {
   11        $time = time();
   12 
   14            100,
   15            'crs',
   16            '<xml>crs</xml>',
   17            md5('<xml>crs</xml>'),
   18            '[]',
   19            '1',
   20            'v5.4.0',
   21            $time,
   22            true,
   23            '/some/where/background.jpg',
   24            '/some/where/thumbnail.svg',
   25            555
   26        );
   27 
   28        $this->assertEquals(100, $template->getObjId());
   29        $this->assertEquals('crs', $template->getObjType());
   30        $this->assertEquals('<xml>crs</xml>', $template->getCertificateContent());
   31        $this->assertEquals(md5('<xml>crs</xml>'), $template->getCertificateHash());
   32        $this->assertEquals('1', $template->getVersion());
   33        $this->assertEquals('v5.4.0', $template->getIliasVersion());
   34        $this->assertEquals($time, $template->getCreatedTimestamp());
   35        $this->assertEquals(true, $template->isCurrentlyActive());
   36        $this->assertEquals('/some/where/background.jpg', $template->getBackgroundImagePath());
   37        $this->assertEquals(555, $template->getId());
   38    }