Пример #1
0
 public void updateCpass()
 {
     _sample = new NHibernateSample.Data.NHibernateSample(typeof(Customer));
     Customer cm = _sample.GetCustomerById(22);
     _sample.changepassword(cm,"skyisblue");
     string password = _sample.GetCustomerById(22).password;
     Microsoft.VisualStudio.TestTools.UnitTesting.Assert.AreEqual("skyisblue", password);
 }