Git Product home page Git Product logo

autosplat's People

Contributors

ryanwersal avatar

Stargazers

 avatar

Watchers

 avatar  avatar

autosplat's Issues

More convenient API for setting mocks

Currently the pattern is:

var myMock = new Mock<IMyInterface>();
myMock.Setup(...).Etc();
Locator.CurrentMutable.RegisterConstant(myMock.Object, typeof(IMyInterface));

and it would be so much more convenient to remove the Splat calls and streamline getting these setup:

var myMock = autoMockContext.RegisterConstant<IMyInterface>();
myMock.Setup(...).Etc();

Additionally it might be ideal to use a callback to configure the mock?

var myMock = autoMockContext.RegisterConstant<IMyInterface>(mock =>
{
    mock.Setup(...).Etc();
});

Add Nerdbank.GitVersioning

This will solve the currently unsolved problem of how to bump versions. Right now it is incredibly adhoc.

Add direct support for Splat/ReactiveUI initialization

Currently swapping out the Locator, without doing further per-instance work, results in breaking RxApp and Splat's expectations about what services are available and what type they are (since they'll get auto mocked).

It would be ideal to make this as much of a one liner as possible since Splat is used extensively with ReactiveUI so it doesn't seem outlandish to expect it (though offering the option of not requiring ReactiveUI may sink this idea).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.