OH at some point you should replace org.springframework...-starter-... with just the dependencies you're interested otherwise you might have a mess on your hands
when your application or system depends on a database, a queue, or a cache - the dependent services should never be mocked or faked rather running locally and tested directly. tests are not flaky and all run fast. #notintegrationtests
struggling with an unmanageable test suite? our own @Kimdhendrick just released an awesome article on infoq: 'is your test suite brittle? maybe it's too dry'.
https://t.co/795GWnsoUk
It’s difficult for developers to communicate clearly, especially on distributed teams. We’ve found that working software is the most effective means of communication between developers. https://t.co/uYehIqADrN
continuous integration check list -
☑️ every dev commits to main, at least daily
☑️ every commit triggers an automated build and test suite run
☑️ if the build or a test fails, it's repaired in ten minutes
#cloudnative