Ejemplo n.º 1
0
        public void AddSummit_Big7_falsereturned()
        {
            var    client    = new Service1();
            int    SumBefore = client.SelectSummit().Count;
            Summit su        = new Summit
            {
                Name = "Big7a"
            };
            Summit su1 = new Summit();

            su1 = client.AddSummit(su);
            int SumAfter = client.SelectSummit().Count;

            Assert.AreEqual(SumBefore + 1, SumAfter);
        }