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

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

            try {
                target.GetWithFulljoin(obj);
                Assert.AreEqual(obj.Items.Count, 3);
            } catch (Exception ex) {
                Debug.WriteLine(ex.StackTrace);

                Assert.Fail(ex.StackTrace);
                throw ex;
            }
        }
        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;
            }
        }