コード例 #1
0
        public AccountsControllerTest()
        {
            customerAccountsService = Substitute.For <ICustomerAccountsService>();

            accountsController = new AccountsController(customerAccountsService);
        }
コード例 #2
0
 public AccountsController(ICustomerAccountsService customerAccountsService)
 {
     this.customerAccountsService = customerAccountsService;
 }