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

            // ACT & ASSERT
            await Assert.ThrowsAsync <ArgumentNullException>(() => _getIntrospectAction.Execute(string.Empty));
        }
 public Task <IntrospectionResponse> GetIntrospection(string rpt)
 {
     return(_getIntrospectAction.Execute(rpt));
 }