Exemplo n.º 1
0
        public void Yahoo_PlaceFinder_PlaceByWoeId_ShouldConstructWithWoeId()
        {
            var it = new PlaceByWoeId(1);

            it.ShouldNotBeNull();
            it.WoeId.ShouldEqual(1);
        }
Exemplo n.º 2
0
        public void Yahoo_PlaceFinder_PlaceByWoeId_ShouldAllowWoeIdToBeChanged_AfterConstruction()
        {
            var it = new PlaceByWoeId(1) { WoeId = 2 };

            it.ShouldNotBeNull();
            it.WoeId.ShouldEqual(2);
        }
Exemplo n.º 3
0
        public void Yahoo_PlaceFinder_PlaceByWoeId_ShouldConstructWithWoeId()
        {
            var it = new PlaceByWoeId(1);

            it.ShouldNotBeNull();
            it.WoeId.ShouldEqual(1);
        }
Exemplo n.º 4
0
        public void Yahoo_PlaceFinder_PlaceByWoeId_ShouldAllowWoeIdToBeChanged_AfterConstruction()
        {
            var it = new PlaceByWoeId(1)
            {
                WoeId = 2
            };

            it.ShouldNotBeNull();
            it.WoeId.ShouldEqual(2);
        }