Tup.Cobar4Net.Parser.ServerParserTest.TestIsSetAutocommitOff C# (CSharp) 메소드

TestIsSetAutocommitOff() 개인적인 메소드

private TestIsSetAutocommitOff ( ) : void
리턴 void
		public virtual void TestIsSetAutocommitOff()
		{
			NUnit.Framework.Assert.AreEqual(ServerParseSet.AutocommitOff, ServerParseSet.Parse
				("set autocommit=0", 3));
			NUnit.Framework.Assert.AreEqual(ServerParseSet.AutocommitOff, ServerParseSet.Parse
				("SET AUTOCOMMIT= 0", 3));
			NUnit.Framework.Assert.AreEqual(ServerParseSet.AutocommitOff, ServerParseSet.Parse
				("set autoCOMMIT =OFF", 3));
			NUnit.Framework.Assert.AreEqual(ServerParseSet.AutocommitOff, ServerParseSet.Parse
				("set autoCOMMIT = off", 3));
		}