Frank McCown
Frank McCown
Upgrading to org.mockito:mockito-core:3.6.28 fixed the problem for me.
On your website: https://sv443.net/jokeapi/v2/#getting-started The two C# lines: `public async static Task GetJokeAdvanced()` and `randomJoke = JsonConvert.DeserializeObject(json);` should instead read: `public async static Task GetJokeAdvanced()` and `randomJoke = JsonConvert.DeserializeObject(json);` You...
The code on the staging server has a GetJoke() method with `Task` and compiles fine. If I leave off the `` from the GetJoke() method, Visual Studio complains about the...