Azavea.Open.DAO.Tests.CriteriaTests.TestConstructors C# (CSharp) Method

TestConstructors() private method

private TestConstructors ( ) : void
return void
        public void TestConstructors()
        {
            // Check that we still conform to the original behavior.
            DaoCriteria sc = new DaoCriteria();
            Assert.AreEqual(-1, sc.Start, "Wrong start value.");
            Assert.AreEqual(-1, sc.Limit, "Wrong limit value.");
        }