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

Banking Kata (Java)

Results 53 banking-kata-java issues
Sort by recently updated
recently updated
newest added

I was trying to find how CQRS concept can be explained highlighting this project ? Can anybody explain if this has been implemented using CQRS in mind ? I can...

Need to add component test. This spans the whole microservice (thus includes REST API, the DB, RabbitMQ)... but it does NOT span other microservices nor third party system (they are...

Running RabbitMQ/other adapter tests locally - Docker. I noticed some issues for myself when running it, so need to check again.

Hi there! I have a suggestion. Could you possibly assist me with setting up the "banking_kata_app"? I have TeamViewer, could you maybe guide me through it using TeamViewer if it's...

Review the metrics and make fixes.

pipeline

Hello @eamtalu! I have one suggestion; you can add `receiveAndConvert("default-bankingkata-queue");` after the publishing method and verify with AssertJ that way: ```java rabbitMQEventBus.publish(accountOpenedDto); Object message = rabbitTemplate.receiveAndConvert("default-bankingkata-queue"); Assertions.assertThat(message).isEqualTo(accountOpenedDto); ``` I think...

messaging

@eamtalu, you can use the feature "Pattern Matching for instanceof" (JEP 394) here, so you won't need to make the casting, following the example and documentation: ```java if (eventDto instanceof...

messaging

I followed the instructions on `README.md` for running `./gradlew test` (and th previous preparation activities, like environment variables and docker compose). I get the following error: ` JdbcBankAccountStorageTest > should_find_multiple_added_bank_accounts()...

bug

@JoaoCipriano, could we add a configuration file to exclude rule S5960?

pipeline

I want to run all the adapter tests, so I configure environment, run docker, then run tests as follows: ``` PS C:\GitHub\valentinacupac\banking-kata-java> . .\env\env.ps1 PS C:\GitHub\valentinacupac\banking-kata-java> docker-compose up -d PS...

bug