// test no gxp:param with that name
FileRef caller = createFile("caller",
"<call:callee gxp:bundles='bundle'/>");
compileFiles(callee, caller);
assertAlert(new InvalidAttrBundleError(pos(2, 1), "<call:callee>", "bundle"));
assertNoUnexpectedAlerts();
// test gxp:param with wrong type
caller = createFile("caller",
"<gxp:param name='bundle' type='String' />",
"<call:callee gxp:bundles='bundle'/>");
compileFiles(callee, caller);
assertAlert(new InvalidAttrBundleError(pos(3, 1), "<call:callee>", "bundle"));
assertNoUnexpectedAlerts();
}