public void InvalidTryGetValue(string project)
 {
     ProjectPathsManager.TryGetValue(project, out string path);
     Assert.That(path, Is.Null);
 }
 public void ValidTryGetValue()
 {
     ProjectPathsManager.TryGetValue("projectKey", out string path);
     Assert.That(path, Is.EqualTo("projectPath"));
 }