public void GetWithFullJoinTest()
        {
            SQLServerSession target = new SQLServerSession(GetConnection());
            ConfigurePessoa();
            ConfigureItem();

            Pessoa obj = new Pessoa(); // TODO: Initialize to an appropriate value
            obj.Id = 55;

            try {
                target.GetWithFulljoin(obj);
            } catch (Exception ex) {
                Console.Out.WriteLine(ex.StackTrace);
                throw ex;
            }
        }
        public void getTest()
        {
            SQLServerSession target = new SQLServerSession(GetConnection());
            ConfigurePessoa();

            Pessoa obj = new Pessoa(); // TODO: Initialize to an appropriate value
            obj.Id = 55;

            bool expected = true;
            bool actual;
            try {
                actual = target.Get(obj);
            } catch (Exception ex) {
                throw ex;
            }

            Assert.AreEqual(expected, actual, "SimpleCrud.ADO.ADOSession.get did not return the expected value.");
        }