Nfield.Services.NfieldSurveysServiceTests.TestUploadInterviewerInstructionsAsync_FileDoesNotExist_ThrowsFileNotFoundException C# (CSharp) Method

TestUploadInterviewerInstructionsAsync_FileDoesNotExist_ThrowsFileNotFoundException() private method

        public void TestUploadInterviewerInstructionsAsync_FileDoesNotExist_ThrowsFileNotFoundException()
        {
            var target = new NfieldSurveysService();
            Assert.Throws<FileNotFoundException>(
                () =>
                    UnwrapAggregateException(target.UploadInterviewerFileInstructionsAsync("NotExistingFile.pdf",
                        "surveyId")));
        }
NfieldSurveysServiceTests