Fixing broken tests after my changes to the CommandResolvers.

This commit is contained in:
Livar Cunha 2016-08-25 22:53:04 -07:00
commit e8f2dabcdb
8 changed files with 48 additions and 11 deletions

View file

@ -123,6 +123,11 @@ namespace Microsoft.Extensions.DependencyModel.Tests
throw new NotImplementedException();
}
public string GetDirectoryFullName(string path)
{
throw new NotImplementedException();
}
public bool Exists(string path)
{
return _files.Keys.Any(k => k.StartsWith(path));