About 30,300,000 results
Open links in new tab
  1. unit testing - What is Mocking? - Stack Overflow

    Apr 19, 2010 · What is Mocking? .Mocking is primarily used in unit testing. An object under test may have dependencies on other (complex) objects. To isolate the behaviour of the object you …

  2. What's the difference between faking, mocking, and stubbing?

    Dec 6, 2008 · For example, mocking network requests allows you to test positive cases and fault cases without the unpredictable nature of actual network calls. Mocks will often include some …

  3. java - Mocking static methods with Mockito - Stack Overflow

    Mocking the static methods is considered to be a bad practice. If you try to do that, it means there is something wrong with the way you want to perform testing.

  4. unit testing - Mocking using Moq in c# - Stack Overflow

    Mar 23, 2017 · Classic example which demonstrates that if you cannot unit test a particular component, REFACTOR it! This is why I love what any mocking framework enforces you to do …

  5. What is Object Mocking and when do I need it? - Stack Overflow

    Aug 7, 2008 · Object Mocking is used to keep dependencies out of your unit test. Sometimes you'll have a test like "SelectPerson" which will select a person from the database and return a …

  6. What is the purpose of mock objects? - Stack Overflow

    Sep 1, 2010 · Also note that this is a pretty simplistic example and that mocking frameworks allow for some pretty sophisticated specifications of expected behavior from components to support …

  7. mocking - How can I mock the JavaScript 'window' object using …

    9 The window object in Jest is self-mocking One of the things unaddressed in other answers is a comment by the OP: Using Jest, I don't know how to mock the window. The window object is …

  8. mocking - Swagger/OpenAPI mock server - Stack Overflow

    Feb 12, 2020 · Mocking is supported on both free and paid plans. To use the mock server, import your spec into SwaggerHub and enable "API Auto Mocking". Mock responses can be JSON, …

  9. unit testing - What are mock objects in Java? - Stack Overflow

    Jan 24, 2010 · Mocking and Mock Objects is not specific to Java. Mock objects is a unit testing technique in which a code chunk is replaced by dummy implementations that emulate real code.

  10. mocking - Mockito.mockedStatic for method with arguments

    Jul 30, 2020 · one thing to be noted in above answer is that you need to use mockito-inline instead of mockito-core for mocking static methods