Beispiel #1
0
        public void InterventionIsActivefalseTest()
        {
            Intervention a = new Intervention();

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

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

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