Tup.Cobar4Net.Parser.ServerParserTest.TestIsSetAutocommitOff C# (CSharp) Method

TestIsSetAutocommitOff() private method

private TestIsSetAutocommitOff ( ) : void
return 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));
		}