"<Module><ModulePrefs title=''>" +
"</ModulePrefs>" +
"<Content type='html'/>" +
"</Module>";
Gadget gadget = makeGadgetWithSpec(gadgetXml);
gadget.addFeature("foo");
// add non existing feature,
gadget.addFeature("do-not-exists");
expectFeatureCalls(gadget,
ImmutableList.of(inline("foo_content();", "foo_content_dbg();")),
ImmutableSet.<String>of(),
ImmutableList.<FeatureResource>of());