Popularity
2.2
Stable
Activity
0.0
Stable
22
2
6
Programming language: Go
License: MIT License
mockhttp alternatives and similar packages
Based on the "Mock" category.
Alternatively, view mockhttp alternatives based on common mentions on social networks and blogs.
-
hoverfly
Lightweight service virtualization/ API simulation / API mocking tool for developers and testers -
counterfeiter
A tool for generating self-contained, type-safe test doubles in go -
Mmock
Mmock is an HTTP mocking application for testing and fast prototyping -
govcr
HTTP mock for Golang: record and replay HTTP/HTTPS interactions for offline testing -
smtpmock
SMTP mock server written on Golang. Mimic any 📤 SMTP server behavior for your test environment with fake SMTP server. -
mooncake
:moon_cake: A simple way to generate mocks for multiple purposes -
mockserver
Super slim & blazing fast mock server to replace the Java/NPM counterpart mockserver -
genmock
Go mocking system with code generator for building calls of the interface methods.
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
Do you think we are missing an alternative of mockhttp or a related project?
Popular Comparisons
README
mockhttp -- Go package for unit testing HTTP serving
Unit testing HTTP services written in Go means you need to call their
ServeHTTP
receiver. For this, you need something that fulfills the
http.ResponseWriter
interface, and you need to populate a
http.Request
struct with suitable-looking data. mockhttp.go
helps you do these tasks, without excessive copy-pasting.
See mockhttp_test.go
for an example of usage.