Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductController"/> class.
 /// </summary>
 public ProductController(IProductInteractor productInteractor)
 => _productInteractor = productInteractor ?? throw new ArgumentNullException(nameof(productInteractor));
 public void SetUp()
 {
     _productInteractor = Substitute.For <IProductInteractor>();
 }