public void InterventionIsActivefalseTest() { Intervention a = new Intervention(); a.Completed(); Assert.IsFalse(a.IsActive()); }
public void InterventionCompletedNotActiveTest() { Intervention a = new Intervention(); a.Completed(); Assert.AreNotEqual(a.IsActive(), a.IsCompleted()); }
public void InterventionIsActiveTrueTest() { Intervention a = new Intervention(); Assert.IsTrue(a.IsActive()); }