Exemplo n.º 1
0
        public void Yahoo_PlaceFinder_PlaceByName_ShouldAllowNameToBeChanged_AfterConstruction()
        {
            var it = new PlaceByName("name") { Name = "other name" };

            it.ShouldNotBeNull();
            it.Name.ShouldEqual("other name");
        }
Exemplo n.º 2
0
        public void Yahoo_PlaceFinder_PlaceByName_ShouldConstructWithName()
        {
            var it = new PlaceByName("name");

            it.ShouldNotBeNull();
            it.Name.ShouldEqual("name");
        }
Exemplo n.º 3
0
        public void Yahoo_PlaceFinder_PlaceByName_ShouldConstructWithName()
        {
            var it = new PlaceByName("name");

            it.ShouldNotBeNull();
            it.Name.ShouldEqual("name");
        }
Exemplo n.º 4
0
        public void Yahoo_PlaceFinder_PlaceByName_ShouldAllowNameToBeChanged_AfterConstruction()
        {
            var it = new PlaceByName("name")
            {
                Name = "other name"
            };

            it.ShouldNotBeNull();
            it.Name.ShouldEqual("other name");
        }