Exemplo n.º 1
0
        public void InterventionIsActivefalseTest()
        {
            Intervention a = new Intervention();

            a.Completed();
            Assert.IsFalse(a.IsActive());
        }
Exemplo n.º 2
0
        public void InterventionCompletedNotActiveTest()
        {
            Intervention a = new Intervention();

            a.Completed();
            Assert.AreNotEqual(a.IsActive(), a.IsCompleted());
        }
Exemplo n.º 3
0
        public void InterventionIsActiveTrueTest()
        {
            Intervention a = new Intervention();

            Assert.IsTrue(a.IsActive());
        }