示例#1
0
        public void DoWorkEqual()
        {
            string result = new ServiceClient.Work().DoWork();

            //Assert.IsNotEmpty (result);
            Assert.AreEqual("1", result);
        }
示例#2
0
        public void DoWorkEmpty()
        {
            string result = new ServiceClient.Work().DoWork();

            Assert.IsNotEmpty(result);
            //Assert.AreNotSame("0",result);
        }