public void ProcessIsResponding_Does_Not_Respond_If_Not_Present()
 {
     Assert.IsFalse(FileLibrary.IsProcessResponding(processName));
 }
        public void ProcessIsResponding_Does_Not_Respond_If_Not_Responding()
        {
            startProcess();

            Assert.IsFalse(FileLibrary.IsProcessResponding(processName));
        }
 public void ProcessIsResponding_Responds_If_Present()
 {
     startProcess();
     Assert.IsTrue(FileLibrary.IsProcessResponding(processName));
 }