Browse Source

Adapted FakePackageRepositories class to interface changes.

pull/32/head
Andreas Weizel 13 years ago
parent
commit
9475db0a85
  1. 19
      src/AddIns/Misc/AddInManager2/AddInManager2.Tests/Fakes/FakePackageRepositories.cs

19
src/AddIns/Misc/AddInManager2/AddInManager2.Tests/Fakes/FakePackageRepositories.cs

@ -17,15 +17,7 @@ namespace ICSharpCode.AddInManager2.Tests.Fakes
} }
} }
public NuGet.IPackageRepository Active public IEnumerable<NuGet.PackageSource> RegisteredPackageSources
{
get
{
throw new NotImplementedException();
}
}
public NuGet.PackageSource ActiveSource
{ {
get get
{ {
@ -37,16 +29,9 @@ namespace ICSharpCode.AddInManager2.Tests.Fakes
} }
} }
public IEnumerable<NuGet.PackageSource> RegisteredPackageSources public NuGet.IPackageRepository GetRepositoryFromSource(NuGet.PackageSource packageSource)
{
get
{
throw new NotImplementedException();
}
set
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
} }
}
} }

Loading…
Cancel
Save