This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>(); |