Ejemplo n.º 1
0
        public void ShouldReturnFalseWhenParameterIsNotOne()
        {
            PIAgent elemento = new PIAgent();

            bool w = elemento.IsOne(2);

            Assert.True(w, "Is not One");
        }
Ejemplo n.º 2
0
        public void ShouldReturnTrueWhenParameterIsOne()
        {
            PIAgent elemento = new PIAgent();

            bool t = elemento.IsOne(1);

            Assert.True(t, "Is One");
        }