public function testIsNotIdenticalBody()
 {
     $name = 'foo';
     $bodyA = new stdClass();
     $bodyA->foo = 'bar';
     $bodyB = new stdClass();
     $bodyB->baz = 'qux';
     $templateA = new Template($name, $bodyA);
     $templateB = new Template($name, $bodyB);
     $this->assertFalse($templateA->isIdentical($templateB));
 }