Ejemplo n.º 1
0
        public void RssTestXml()
        {
            SimplTypesScope simplTypesScope = SimplTypesScope.Get("rss", typeof (Rss),
                                                                     typeof (Channel),
                                                                     typeof (Item));

            List<String> categorySet = new List<String> {"category1", "category2"};

            Item item1 = new Item("testItem1", "testItem1Description", new ParsedUri("http://www.google.com"), "asdf",
                                  "nabeel", categorySet);
            Item item2 = new Item("testItem2", "testItem2Description", new ParsedUri("http://www.google.com"), "asdf",
                                  "nabeel", categorySet);

            Channel c = new Channel("testTile", "testDesc", new ParsedUri("http://www.google.com"),
                                    new List<Item> {item1, item2});

            Rss rss = new Rss(1.4f, c);

            TestMethods.TestSimplObject(rss, simplTypesScope);
        }
Ejemplo n.º 2
0
 public Rss(float pVersion, Channel pChannel)
 {
     version = pVersion;
     channel = pChannel;
 }