Code Monkey home page Code Monkey logo

Comments (5)

staticcat avatar staticcat commented on August 28, 2024

It would be really nice to write it in order of thought. The current order requires coming back in most cases after you have figured out the type.

What I was thinking was the following;

myMock.Setup(
procedure (myMockType : T)
myMockType.MyMethod()
end).Returns<SomeType>(instanceOfSomeType);

or

myMock.Setup.MyMethod.Returns(instanceOfSomeType);

My method still needs to be called on the passed type. Due to not having lamda's this might not be elegant. The first option might be more possible.

from delphi-mocks.

staticcat avatar staticcat commented on August 28, 2024

Just a note after attempting briefly to implement an written form of the mock setup. It currently will require a rewrite of most of the supporting classes. This could be done where the current classes are kept as "fluent api" implementation, and another set are introduced as a "written api".

The change would need to be made in how expectations are registered. Instead of being registered when the method is called (fluent method) they would need to be registered when the behavior is defined. By its nature fluent api's are a reverse of what is written, therefore to get what I would like I would have reverse the fluent api implementation to a degree. This might be doubling up where its not really required.

Anyways... onto implementing the overload WillReturn method.

from delphi-mocks.

staticcat avatar staticcat commented on August 28, 2024

Baaahhh.... Damn interfaces not allowing generic functions. Back to the drawing-board.

from delphi-mocks.

sglienke avatar sglienke commented on August 28, 2024

I am pretty sure that is only possible with lambdas and generic helpers/extension methods. Both which does not exist in Delphi. But that is how some frameworks do it in C#.

from delphi-mocks.

vincentparrett avatar vincentparrett commented on August 28, 2024

Closing as not currently possible with delphi's implementation of generics on interfaces.

from delphi-mocks.

Related Issues (20)

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.