public static CreativeCommonsSyndicationExtensionContext CreateContext1()
 {
     var nyc = new CreativeCommonsSyndicationExtensionContext();
     //nyc.Latitude = 40;
     //nyc.Longitude = -74;
     return nyc;
 }
        public static CreativeCommonsSyndicationExtensionContext CreateContext1()
        {
            var nyc = new CreativeCommonsSyndicationExtensionContext();

            //nyc.Latitude = 40;
            //nyc.Longitude = -74;
            return(nyc);
        }
        public void CreativeCommons_ContextTest()
        {
            CreativeCommonsSyndicationExtension        target   = CreateExtension1();
            CreativeCommonsSyndicationExtensionContext expected = CreateContext1();
            CreativeCommonsSyndicationExtensionContext 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.");
        }