internal Dieta ConstructorTest(BMI_AF o)
        {
            Dieta target = new Dieta(o);

            return(target);
            // TODO: add assertions to method DietaTest.ConstructorTest(BMI_AF)
        }
Ejemplo n.º 2
0
        public void aktualizacjaDanychTest320()
        {
            BMI_AF bMI_AF;
            Dieta  dieta;
            string s;

            bMI_AF = new BMI_AF();
            dieta  = new Dieta(bMI_AF);
            s      = this.aktualizacjaDanychTest(dieta);
            Assert.AreEqual <string>("0", s);
            Assert.IsNotNull((object)dieta);
        }