Nfield.Services.NfieldSurveysServiceTests.TestUploadInterviewerInstructionsAsync_FileDoesNotExist_ThrowsFileNotFoundException C# (CSharp) 메소드

TestUploadInterviewerInstructionsAsync_FileDoesNotExist_ThrowsFileNotFoundException() 개인적인 메소드

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