mocking
Here are 806 public repositories matching this topic...
-
Updated
Jun 15, 2022 - Java
-
Updated
Jun 8, 2022 - PHP
Prerequisites
- I confirm my issue is not in the opened issues
- I confirm the Frequently Asked Questions didn't contain the answer to my issue
Environment check
- I'm using the latest
msw
version - I'm using Node.js version 14 or higher
Node.js vers
Hello! We had a need for the "does not contain" pattern while using your tool.
Usage example :
We have multiple query parameters "groups" in a URL: http://localhost:1111/test-stub?groups=Qwerty&qroups=Qwerty2
So we need to do something like
...
"id" : "c459a482-5b18-4c12-a17f-be2834fd6cdf",
"name" : "mapping-name",
"request" : {
"urlPath" : "/test-stub",
"metho
-
Updated
May 16, 2022 - Objective-C
-
Updated
Jun 15, 2022 - TypeScript
Hey Guys,
I see an IllegalStateException when running one particular test.
What steps will reproduce the problem?
The following code fails each time it is run
Testcase:
package backend.model.posting
import backend.controller.exceptions.ConflictException
import backend.model.location.Location
import backend.model.user.UserAccount
import org.junit.Before
import org.
-
Updated
Jun 1, 2022 - JavaScript
-
Updated
Jun 10, 2022 - TypeScript
Summary of the feature request
As a contributor or maintainer of a project I'd like to be able to help other contributors to correctly mock functions by failing a test if a mock does not exist. This would be very useful in situations when there are very complex scripts that handle a lot of scenarios and using a lot of external helper functions.
The ask would be to add a new parameter to `Mo
https://github.com/agriffis/vcrpy-unittest adds a VCRTestCase
(and a VCRMixin
) class. They consists only of 23 lines of code. Please include those two functions in your project to avoid needing to install another package. Those tiny package have a bigger overhead and packaging them for Debian would be rejected due to this reason.
-
Updated
May 14, 2022 - Python
-
Updated
Jun 7, 2022 - Go
-
Updated
Jun 10, 2022 - JavaScript
-
Updated
Jun 11, 2022 - JavaScript
The issue is based on the discussion in #559.
should we probably modify CI so that doc is published automatically on push to master? This way if we don't want doc to be released right now - just keep it in a branch. Otherwise, we have this non-synchronized docs and manual work..
😟
I'm not sure what to do about publishing docs. It would be nice to auto-publish,
-
Updated
May 27, 2022 - Ruby
-
Updated
Mar 30, 2022 - Go
I'm mocking a protocol with a function that looks like this:
func foo(
completion: @escaping (
_ bar: Int,
_ baz: Int,
_ qux: Int
) -> Void
)
The generated mocks do not properly remove the line breaks before attempting to put it into a single-line string literal, resulting in the errors Unterminated string literal
, `Consecutive statement
-
Updated
Jun 14, 2022 - JavaScript
-
Updated
Nov 23, 2021 - Swift
-
Updated
May 2, 2022 - C#
-
Updated
Jun 7, 2022 - Objective-C
-
Updated
Sep 19, 2021 - C#
-
Updated
May 28, 2020 - Shell
-
Updated
Apr 26, 2022 - TypeScript
-
Updated
Jun 9, 2022 - C#
Improve this page
Add a description, image, and links to the mocking topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the mocking topic, visit your repo's landing page and select "manage topics."
Hi,
It seems like the HTTP Assert package does not allow me to specify a body to pass in a POST request for example. Looking at the
HTTPBody()
function, the body argument is set tonil
:req, err := http.NewRequest(method, url+"?"+values.Encode(), nil)
Is this by design, or am I looking at a missing feature?
Cheers,