01: package com.sun.syndication.unittest;
02:
03: /**
04: *
05: * <p>
06: * @author Alejandro Abdelnur
07: *
08: */
09: public class TestOpsRSS094 extends FeedOpsTest {
10:
11: public static void main(String[] args) throws Exception {
12: FeedOpsTest test = new TestOpsRSS094();
13: test.testWireFeedSyndFeedConversion();
14: }
15:
16: public TestOpsRSS094() {
17: super ("rss_0.94");
18: }
19:
20: }
|