/** -*-objc-*- * RSSKit Test Suite by Guenther Noack * */ #import #import #import /** * A category that enables RSS Feeds to read feeds from the resources */ @interface RSSFeed (Resources) +(id)feedWithResource: (NSString*)aResourceName; -(id)initWithResource: (NSString*)aResourceName; @end #define FETCH(x) \ RSSFeed* feed = \ [RSSFeed feedWithResource: (x)]; \ \ [feed fetch]; \ @interface RSSKitTests : NSObject { } - (void) testNothing; @end