public void LiveDisplayUpdaterRequestStopTest()
 {
     MainWindow main_window = new MainWindow();
     LiveDisplayUpdater thread = new LiveDisplayUpdater(main_window.GetReviewFootageImageBox());
     thread.StartWorking();
     thread.RequestStop();
     Assert.IsFalse(thread.IsRunning());
 }