BudgetAnalyser.Engine.UnitTest.Statement.AnzAccountStatementImporterV1Test.LoadShouldThrowIfFileNotFound C# (CSharp) 메소드

LoadShouldThrowIfFileNotFound() 개인적인 메소드

private LoadShouldThrowIfFileNotFound ( ) : System.Threading.Tasks.Task
리턴 System.Threading.Tasks.Task
        public async Task LoadShouldThrowIfFileNotFound()
        {
            var subject = Arrange();
            BankImportUtilities.AbortIfFileDoesntExistOverride = s => { throw new FileNotFoundException(); };
            await subject.LoadAsync("foo.bar", StatementModelTestData.ChequeAccount);
            Assert.Fail();
        }