@NotNull
public static PsiElement createConstantString(final String text, final Project project) {
final CfmlFile dummyFile = createDummyFile(project, "<cffunction name=\"" + text + "\"></cffunction>");
final PsiElement tag = dummyFile.getFirstChild();
assert tag != null;
final CfmlAttributeNameImpl namedAttribute = PsiTreeUtil.getChildOfType(tag, CfmlAttributeNameImpl.class);
assert namedAttribute != null;
final PsiElement element = namedAttribute.getValueElement();
assert element != null;
return element;
}