コード例 #1
0
 public void VideoFromFileThreadRequestStopTest()
 {
     MainWindow main_window = new MainWindow();
     VideoFromFileThread thread = new VideoFromFileThread(Singleton.VIDEO_FILE_PATH);
     thread.StartWorking();
     thread.RequestStop();
     Assert.IsFalse(thread.IsRunning());
 }