github FakeItEasy/FakeItEasy 7.0.0-beta.2

latest releases: 8.1.0, 8.0.1, 8.0.0...
pre-release3 years ago

New

  • Better extension point scanning (#1813)
    now FakeItEasy searches the following assemblies for classes that implement the various extensions points:
    • its own assembly,
    • assemblies already loaded in the current AppDomain, if they reference FakeItEasy,
    • assemblies referenced by assemblies from the previous bullet point, if they reference FakeItEasy,
    • additional assemblies identified by the Bootstrapper's GetAssemblyFileNamesToScanForExtensions method, if they reference FakeItEasy
  • Support specifying number of calls when using Invokes and no additional member configuration (#1812):
    Previously DoesNothing would be required in the chain, so
    A.CallTo(() => fake.Method()).Invokes(…).DoesNothing().Once()
    can now be written
    A.CallTo(() => fake.Method()).Invokes(…).Once()

Additional Items

  • Switch logo to high DPI 512px #1814

With special thanks for contributions to this release from:

Don't miss a new FakeItEasy release

NewReleases is sending notifications on new releases.