public function testNormalizeType()
 {
     $this->assertEquals('blah', $this->_typeProcessor->normalizeType('blah'));
     $this->assertEquals('string', $this->_typeProcessor->normalizeType('str'));
     //$this->assertEquals('integer', $this->_typeProcessor->normalizeType('int'));
     $this->assertEquals('boolean', $this->_typeProcessor->normalizeType('bool'));
 }