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

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

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

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