Esempio n. 1
0
 public void ValidationTest()
 {
     Person p = new Person();
     PersonBs pBS = new PersonBs();
     pBS.ValidationTest(p);
     Assert.AreEqual(true, true);
 }
Esempio n. 2
0
        public void TestMethod1()
        {
            PersonBs test = new PersonBs();
            string connectionString = "Data Source=MESKAI-PC;Initial Catalog=Test;Integrated Security=True";
            Person p = new Person();
            p.Name = "testname";

            MsSqlServerConnection con = new MsSqlServerConnection(connectionString, true);
            DataManager target = new DataManager(con); // TODO: Initialize to an appropriate value
            //test.Insert(p);
        }
Esempio n. 3
0
 public void BusinessBaseTransactionTest()
 {
     PersonBs bs = new PersonBs();
     bs.TestTransaction();
 }