public void testCommentTypeCfg(){
String test =
" * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:\n" +
" * {tag: \"input\", type: \"text\", size: \"24\", autocomplete: \"off\"})";
FileProcessor.CommentType commentType =
FileProcessor.resolveCommentType(new Comment(test));
assertEquals(FileProcessor.CommentType.CFG, commentType);
}