Ejemplo n.º 1
0
        public void VerifyChangeConnectionChangesInternalConnectionString()
        {
            var helper = new SqlDbHelper("godzilla");

            Assert.AreEqual("godzilla", helper.ConnectionString);
            helper.ChangeConnection("mothra");
            Assert.AreEqual("mothra", helper.ConnectionString);
        }
Ejemplo n.º 2
0
		public void VerifyChangeConnectionChangesInternalConnectionString()
		{
			var helper = new SqlDbHelper("godzilla");
			Assert.AreEqual("godzilla", helper.ConnectionString);
			helper.ChangeConnection("mothra");
			Assert.AreEqual("mothra", helper.ConnectionString);
		}