Ejemplo n.º 1
0
        public void C_Variables_CanselFixVariable_Test()
        {
            SimplePart sP = new SimplePart("x");

            sP.FixValue("x", 5.6);
            Assert.True(sP.IsValue);

            sP.CanselFix("x");
            Assert.False(sP.IsValue);
        }