public async Task When_Passing_Null_Parameter_Then_Exception_Is_Thrown()
        {
            // ARRANGE
            InitializeFakeObjects();

            // ACT & ASSERT
            await Assert.ThrowsAsync <ArgumentNullException>(() => _addScopeOperation.Execute(null));
        }
 public Task <bool> AddScope(Scope scope)
 {
     return(_addScopeOperation.Execute(scope));
 }
예제 #3
0
 public Task <AddScopeResponse> Add(PostScope request, string url)
 {
     return(_addScopeOperation.Execute(request, url));
 }