public void StartProviderPassesToRunner(
     FilePath projPath,
     CancellationToken cancel,
     [Frozen] ProcessStartInfo startInfo,
     QueryExecutablePath sut)
 {
     sut.StartInfoProvider.Construct(default).ReturnsForAnyArgs(startInfo);
 public void PassesProjPathToStartProvider(
     FilePath projPath,
     CancellationToken cancel,
     QueryExecutablePath sut)
 {
     sut.Query(projPath, cancel);
     sut.StartInfoProvider.Received(1).Construct(projPath);
 }