Explore >> Select a destination


You are here

markphelps.me
| | konradreiche.com
4.5 parsecs away

Travel
| | If you write your Go tests against real dependencies like Redis, you may have encountered a common problem. Tests running in parallel or across multiple packages can inadvertently use the same keys. This often leads to intermittent failures when tests simultaneously read from or write to these shared keys. One way to avoid this is by ensuring each test uses a unique set of keys. However, tracking and enforcing unique keys can be cumbersome and impractical. In relational database testing, a solution is to have each test write to its own database. While Redis offers logical databases, this option isn't available when using Redis Clusters.
| | testing.googleblog.com
4.7 parsecs away

Travel
| | by Mona El Mahdy Overview This post reviews four strategies for Android UI testing with the goal of creating UI tests that are fast, rel...
| | matthiasnoback.nl
8.8 parsecs away

Travel
| | Thanks! Let me explain myself First of all: thanks everybody for reading the previous parts of this series. Many people posted some interesting comments. I realized quickly that I had to explain myself a bit: why am I writing all of this? Why would you ever want to decouple controllers from the (Symfony2) framework? You probably don't need to bother anyway, because The chances of you needing to move controllers to other frameworks is next to none. - Rafael Dohms
| | blog.separateconcerns.com
30.3 parsecs away

Travel
| I use dependency injection for non-deterministic code.