public function testCamelize()
 {
     $this->assertEquals('testCase', Tag::_camelize('test-case'));
     $this->assertEquals('superTestCase', Tag::_camelize('super-test-case'));
     $this->assertEquals('thirdTestCase', Tag::_camelize('THIRD-TEST-CASE'));
 }