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