Ejemplo n.º 1
0
        public void GetClassesPropertiesWritable()
        {
            List <Type> types = MappingController.GetAllMapableTypes();

            if (types.Count > 0)
            {
                List <PropertyInfo> properties = MappingController.GetClassesPropertiesWritable(types[0].FullName);
                Assert.Greater(properties.Count, 0);

                Console.WriteLine(properties.Count.ToString() + " Properties were returned");
            }
        }