/**
  * testRegistry
  *
  * @since 2.6.0
  */
 public function testRegistry()
 {
     /* setup */
     $this->_registry->set('testKey', 'testValue');
     /* actual */
     $actual = Template::registry('testKey');
     /* compare */
     $this->assertEquals('testValue', $actual);
 }