BudgetAnalyser.Engine.UnitTest.Statement.CsvOnDiskStatementModelRepositoryV1Test.Ctor_ShouldThrow_GivenNullBankImportUtils C# (CSharp) Method

Ctor_ShouldThrow_GivenNullBankImportUtils() private method

private Ctor_ShouldThrow_GivenNullBankImportUtils ( ) : void
return void
        public void Ctor_ShouldThrow_GivenNullBankImportUtils()
        {
            new CsvOnDiskStatementModelRepositoryV1(
                null,
                new FakeLogger(),
                new DtoMapperStub<TransactionSetDto, StatementModel>(),
                this.mockReaderWriterSelector.Object);
            Assert.Fail();
        }