Blackduck synopsys scan script no longer working and returns 404 as of March 2023
Is your synopsys scan no longer working as of the 1st of March 2023? Well it is because it is no longer there (404). It has »
Is your synopsys scan no longer working as of the 1st of March 2023? Well it is because it is no longer there (404). It has »
NSubstitute is a great framework for mocking objects for tests. I recently had an unexpected behaviour when stubbing a method call. For this simple example we »
If you see the following error: > NSubstitute.Exceptions.CouldNotSetReturnDueToNoLastCallException : Could not find a call to return from. You are likely trying to mock a method »
Sometimes you come across a class that you need to stub or mock but it does not have an interface. The easiest way is of course »
Prior to .Net 6 you would have a startup.cs class to set up your asp.net application. In .Net 6 the standard is now to »
If you are on this page you likely created a wildcard endpoint and now you want to respond differently to a request, but keep the wildcard »
Sometimes we want more than just a simple stub from wiremock, sometimes we want to create a scenario. We want Wiremock to do something different when »
Using Wiremock.Net you can set a requestmatcher to only match a request if it contains a specific header with a specific value, in this post »
In many cases you want some sort of wildcard in your URL matching for Wiremock.Net. Most REST URLs contain an id, especially at the end »
Are you looking for a simple guide for setting up Wiremock.Net? Well I hope this can be helpful to you :) I did this yesterday as »