Fixing broken tests after my changes to the CommandResolvers.
This commit is contained in:
parent
55c00a7e45
commit
e8f2dabcdb
8 changed files with 48 additions and 11 deletions
|
@ -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));
|
||||
|
|
Reference in a new issue