Skip to content

Instantly share code, notes, and snippets.

View hartmark's full-sized avatar

Markus Hartung hartmark

View GitHub Profile
Computer Information:
Manufacturer: ASUSTeK COMPUTER INC.
Model: FX705DY
Form Factor: Laptop
No Touch Input Detected
Processor Information:
CPU Vendor: AuthenticAMD
CPU Brand: AMD Ryzen 5 3550H with Radeon Vega Mobile Gfx
CPU Family: 0x17
@hartmark
hartmark / gist:93bcb58e8cafa6ab417dc4ff397ee2c4
Created June 20, 2022 22:11
Extract calling details from NSubstitute
public class CallingTest
{
private readonly ITestOutputHelper testOutputHelper;
private readonly AwesomeService awesomeService;
private readonly IDependantService dependantServiceMock;
public CallingTest(ITestOutputHelper testOutputHelper)
{
this.testOutputHelper = testOutputHelper;
dependantServiceMock = Substitute.For<IDependantService>();