Ejemplo n.º 1
0
        public void Test()
        {
            TestAccessor ta = (TestAccessor)DataAccessor.CreateInstance(typeof(TestAccessor));
            TestObject   o  = ta.LoadById(2);

            Assert.IsNotNull(o);
            Assert.IsNotNull(o.Xml);

            List <TestObject> lst = ta.LoadAll();

            Assert.IsNotEmpty(lst);
            Assert.IsNotNull(lst[0].Xml);
        }