The Wayback Machine - https://web.archive.org/web/20220410203051/https://github.com/topics/injection-framework
Skip to content
#

injection-framework

Here are 25 public repositories matching this topic...

cs-util
cs-util commented Nov 25, 2020

Currently when running all xUnit tests at once not all tests run through successfully

Some tests fail since they depend on internal singleton constructs, testing generic interfaces that internally use injection and because of this are affected by the other running tests. If the interface of the components is not modified the only way to manage to run all tests at once successfully is to separa

enhancement help wanted good first issue
hkakutalua
hkakutalua commented Jul 18, 2019

Provide possibility to create instances with dependencies provided from other modules.

class RepositoriesModule extends Module {
  RepositoriesModule () {
    // PersonRepository depends of PersonWebService
    factory(DependentRequestsRepository(inject()), () =>
        DependentRequestsRepository(inject()));
  }
}

class WebServicesModules extends Module {
    WebServicesMod
enhancement good first issue

Improve this page

Add a description, image, and links to the injection-framework topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the injection-framework topic, visit your repo's landing page and select "manage topics."

Learn more