Azavea.Open.DAO.PostgreSQL.Tests.NullableTests.TestInsertNull C# (CSharp) Method

TestInsertNull() private method

private TestInsertNull ( ) : void
return void
        public void TestInsertNull()
        {
            NullableClass nc = new NullableClass();
            nc.SomeNullableInt = null;
            _ncdao.Insert(nc, true);

            nc = _ncdao.GetFirst("NullableId", nc.NullableId);
            Assert.AreEqual(null, nc.SomeNullableInt);
        }