KRKashif Rezainarchitecture-in-practice.hashnode.dev·2d ago · 5 min readThe Code Coverage Illusion: When Unit Tests Create False ConfidenceHigh code coverage may look impressive, but it does not necessarily mean that an application has been tested well. Over the years, I have repeatedly seen teams invest significant developer time in wr10
JLjabo Landryinfreecodecamp.org·Aug 28 · 24 min readHow to Automate Your Tests in Express Using VitestThinking through API logic while constantly switching tabs to test application integration can be overwhelming and time-consuming. Well, you can save your time and energy by writing tests for your app00
GNGidudu Nicholasinfreecodecamp.org·Aug 27 · 28 min readHow to Test Flutter Apps: Unit, Widget, Golden, and Integration Tests ExplainedThe first time I was asked "what's your test coverage?" in a technical interview, I didn't have a good answer. I had shipped a couple of real Flutter apps by then. They worked and users were using the00
JJohnindeveloper-mind.hashnode.dev·Aug 6 · 6 min readTesting Flutter Applications: A Complete Guide to Test Types, Packages, and ImplementationTesting ensures your Flutter application remains stable, scalable, and bug-free as you add new features. Flutter is designed with testability in mind, offering a robust built-in framework alongside a 00
CDCoding Dropletsincodingdroplets.com·Jul 14 · 10 min read7 Common Mistakes Unit Testing ASP.NET Core Controllers (And How to Fix Them)Unit testing ASP.NET Core controllers looks trivial until your first test passes for the wrong reason. You assert that an action returned Ok, the bar goes green, and six months later a refactor that q00
THTodd Hendrixxinpushpull.hashnode.dev·Jul 11 · 12 min readAgent Failure Mode: Testing the Function of Existence, Not the Existence of FunctionYou have been building with an agent for hours. It writes a feature, adds a few tests, runs the suite, and cleans up after itself. The terminal keeps rewarding you: 34/34 passed Later: 156 passed Th00
CDCoding Dropletsincodingdroplets.com·Jun 18 · 10 min readTimeProvider in ASP.NET Core: Enterprise Decision GuideTime-dependent code has always been one of the trickiest surfaces to test correctly in .NET applications. Before .NET 8, engineers typically wrote wrapper interfaces around DateTime.UtcNow, maintained00
MLMartin Lichtinmartinlicht.hashnode.dev·Jun 11 · 6 min readUnit testing in C: a tutorial with AcuTestI would like to give you a short tutorial on unit testing with AcuTest as the driving example. We go from initial examples to a more detailed understanding. AcuTest is one of many light-weight minimal00
CDCoding Dropletsincodingdroplets.com·May 18 · 12 min readASP.NET Core Testing Interview Questions for Senior .NET Developers (2026)Testing is one of the clearest signals of seniority in a .NET interview. Junior developers write tests that work. Mid-level developers write tests that are isolated. Senior developers write tests that00
CDCoding Dropletsincodingdroplets.com·May 10 · 12 min readFluentAssertions vs Shouldly vs AwesomeAssertions in .NET: Which Assertion Library Should Your Team Use in 2026?When FluentAssertions v8 dropped a proprietary commercial license in January 2025, it forced a question that most .NET teams had quietly avoided for years: does our assertion library actually matter, 00