public void ShouldSetStreamBackgroundOnExceptionalStop()
        {
            var c = new ExceptionThrowingDAQController {
                BackgroundSet = false
            };

            Assert.That(c.BackgroundSet, Is.False);
            c.Start(false);
            Assert.That(c.BackgroundSet, Is.True);
        }
 public void ShouldSetStreamBackgroundOnExceptionalStop()
 {
     var c = new ExceptionThrowingDAQController {BackgroundSet = false};
     Assert.That(c.BackgroundSet, Is.False);
     c.Start(false);
     Assert.That(c.BackgroundSet, Is.True);
 }