コード例 #1
0
        public static FeedRankSyndicationExtensionContext CreateContext1()
        {
            var re = new FeedRankSyndicationExtensionContext();

            re.Domain = new Uri("");
            re.Label  = "";
            re.Scheme = new Uri("");
            re.Value  = 1.0m;
            return(re);
        }
コード例 #2
0
        public void FeedRank_ContextTest()
        {
            FeedRankSyndicationExtension        target   = CreateExtension1();
            FeedRankSyndicationExtensionContext expected = CreateContext1();
            FeedRankSyndicationExtensionContext actual;

//			target.Context = expected;
            actual = target.Context;
            var b = actual.Equals(expected);

            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }