コード例 #1
0
 public void OneTimeTearDown()
 {
     if (Connection != null && Connection.IsOpen())
     {
         Connection.Close();
     }
 }
コード例 #2
0
        public void OneTimeTearDown()
        {
            if (Trans != null)
            {
                Trans.Rollback();
            }

            if (Connection != null && Connection.IsOpen())
            {
                Connection.Close();
            }
        }
コード例 #3
0
 public void OneTimeTearDown()
 {
     Trans.Rollback();
     Connection.Close();
 }