Dom Shahbazi
Dom Shahbazi

Reputation: 730

Libraries to mock HTTP server in scala?

Im looking to mock out calls to a third party API from my scala microservice. Can anybody recommend a library they have tried and tested for this? I have seen a couple of older and not very active projects on github, but they do not look too promising.

Upvotes: 1

Views: 4514

Answers (2)

user6860682
user6860682

Reputation:

This mock server is appropriate for your purpose, like alternative, you can look at [simplle framework][2], which is very simple in use, btw, they provide examples of usage.

Upvotes: 2

Maxim
Maxim

Reputation: 7348

I used wiremock (Java)

It's very simple and yet powerful.

Upvotes: 2

Related Questions