Example #1
0
        public void CheckInsert()
        {
            Bean b = new Bean();

            b.LibelleNotNull = "libelle";
            BeanDescriptor.Check(b, true);
        }
Example #2
0
        public void CheckUpdateStringEmpty()
        {
            Bean b = new Bean();

            b.Id             = 3;
            b.LibelleNotNull = string.Empty;
            BeanDescriptor.Check(b, false);
        }
Example #3
0
        public void CheckUpdate()
        {
            Bean b = new Bean();

            b.Id             = 3;
            b.LibelleNotNull = "libelle";
            BeanDescriptor.Check(b, false);
        }