banking-kata-dotnet icon indicating copy to clipboard operation
banking-kata-dotnet copied to clipboard

Banking Kata (.NET)

Results 12 banking-kata-dotnet issues
Sort by recently updated
recently updated
newest added

When this use case is executed, it should publish an event AccountOpenedEvent

Most of the fakes are not necessary, I would argue that you have to fake domain logic. The only fake that's worth is bank account repository test. Based on [this](https://www.linkedin.com/posts/daniel-botero-correa-30085934_valentina-cupa%C4%87-%D0%B2%D0%B0%D0%BB%D0%B5%D0%BD%D1%82%D0%B8%D0%BD%D0%B0-%D1%86%D1%83%D0%BF%D0%B0%D1%9B-in-the-activity-7133387085079621633-mOvc?utm_source=share&utm_medium=member_desktop)...

See the classes done with Entity Framework: - Source: https://github.com/valentinacupac/banking-kata-dotnet/blob/main/src/Optivem.Kata.Banking.Infrastructure/BankAccountRepository.cs - Test: https://github.com/valentinacupac/banking-kata-dotnet/blob/main/test/Optivem.Kata.Banking.Infrastructure.Test/BankAccountRepositoryTest.cs Do the same thing for Redis, just add Redis prefix, e.g. additional files: - RedisBankAccountRepository - RedisBankAccountRepositoryTest

persistence

Currently, as can be seen in README.md, we are manually having to setup the database. We could switch to Docker instead.

pipeline