sb.append(" </cffunction>\n\n");
}
if(methods != null) {
for (int i = 0; i < methods.length; i++) {
CFCMethodViewItem m = methods[i];
String methodDesc = m.toString();
String methodName = methodDesc.substring(0, methodDesc.indexOf("(") ).trim();
sb.append(" <cffunction name=\"test"+capitalizeFirst(methodName)+"\" returntype=\"void\" access=\"public\" hint=\"Tests "+methodName+"\">\n");
sb.append(" <!--- TODO: Implement test - "+methodDesc.trim()+" --->\n");
sb.append(" <cfset fail(\"This test not yet implemented\") />\n");