惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
V
V2EX
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
The Cloudflare Blog
T
Tailwind CSS Blog
H
Help Net Security
腾讯CDC
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
C
Check Point Blog
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Forbes - Innovation

Why Do Humans Have Fingerprints? Hint: It’s Not What You Think Booking.com Confirms Data Breach, Reservation PIN Codes Changed Why Major News Sites Are Blocking The Internet Archive’s Wayback Machine iPhone Fold Release Date: New Report Details Frustrating Apple News Comet Tracker: How To See Pan-STARRS And Three Planets On Wednesday NYT Mini Crossword Today: Tuesday, April 14 Hints And Answers Today’s NYT Strands Hints, Spangram, Answers: Tuesday, April 14 (It’s A Little Unclear) Today’s Wordle #1760 Hints And Answer For Tuesday, April 14 Most Of The Microplastics In Urban Air Come From Tires Today’s Wordle #1759 Hints And Answer For Monday, April 13 NYT Mini Crossword Today: Monday, April 13 Hints And Answers NYT Pips Today: Hints, Answers And Walkthrough For Monday, April 13 The YC Chief Who Codes 10,000 Lines A Day Has A Simple Secret Samsung Expands One UI 8.5 Beta To More Galaxy Owners Why You Should Stop Using Your iPhone If It’s On This List Chamath Says Firms That Treat AI As A Strategy Hand Rivals Their Edge 3 Unexpected Habits Of Secure Couples, By A Psychologist The First Lamp That Folds Your Clothes Samsung’s Disappointing Price Update For Galaxy Phone Buyers 3 Subtle Signs Someone Is Falling In Love With You, By A Psychologist Do Mantis Shrimp See More Colors Than Humans? A Biologist Explains NYT Connections Answers Explained For Monday, April 13 (#1,037) NYT Connections Hints Today: Monday, April 13 Clues And Answers (#1,037) LEGO Luigi & Mach 8 (72050) Review: 2026’s Best Set Yet? Marc Andreessen Says AI Productivity Will Trigger A Hiring Boom 3D Printing Is The Ultimate Hack To Reduce Household Spending Apple iPhone Fold: Striking Design Revealed In Leaked Photos Apple Smart Glasses: New Leak Reveals A Major Design Twist To Beat Meta Tested: The AI Coming To The Rivian R2 Quordle Hints Today: Monday, April 13 Clues And Answers
AI Is Writing Your Code, But Who's Testing It?
Khurram Jave · 2026-05-11 · via Forbes - Innovation

Khurram Mir is the founder of Kualitatem and Kualitee, focused on software quality engineering, product development & tech entrepreneurship.

getty

For the past three years, I've watched a pattern repeat itself across software engineering organizations—from early-stage startups to publicly traded software companies. The team adopts an AI coding tool. Velocity climbs, leadership celebrates and QA headcount gets quietly frozen or reduced. Then, six to nine months later, a production incident exposes a logic error that looked perfectly reasonable, passed review and sailed through the rest of the suite.

GitHub research found that AI-assisted developers ship code up to 55% faster. However, output speed and output reliability aren't the same measurement, and most organizations are only tracking one of them.

Those cutting QA investment argue that AI writes cleaner code than rushed humans, so there's less to catch. That argument misunderstands what AI actually does.

What AI Actually Does To Your Codebase

The failure mode here isn't obvious, and that's precisely what makes it dangerous.

AI code generators are pattern completion engines. They're extraordinarily good at producing code that resembles correct code. They're not reasoning about your business logic, your edge cases or the system-level assumptions that a developer—who has since left—baked into your architecture three years ago. The output looks clean because it's syntactically fluent, not because it's contextually accurate.

The practical consequence is what I call the "looks right" problem. In code reviews, there's social pressure to approve. When AI-generated code arrives formatted, readable and confident, the bar for pushback rises.

Engineers accept suggestions they haven't fully traced because questioning them feels like slowing things down. A study on technical debt formation published in Information and Software Technology pointed to review quality degradation, not volume of bad code, as the primary driver of compounding defects.

There's also a structural problem underneath the clean surface. AI suggestions frequently introduce:

Undocumented Dependencies: Third-party libraries or internal APIs pulled in without explicit justification or ownership.

Edge-Case Assumptions: Implicit handling of null values, boundary conditions or data formats that were never discussed or specified.

Architectural Shortcuts: Patterns that work in isolation but conflict with the broader system design in ways that only emerge at runtime.

The cleaner the output looks on the surface, the more dangerous the blind spot underneath.

Where Traditional Testing Assumptions Break Down

Most QA processes were designed around a simple premise: The developer who wrote the code understands it. That premise no longer holds.

When AI generates a function, the developer may have reviewed it at a surface level without tracing through its full behavior. When the same AI (or a similar one) is then used to generate tests for that function, you don't have quality assurance. You have circular validation. The model that produced the code and the model checking it share the same statistical tendencies, the same training blind spots and the same confidence in plausible-looking outputs.

The real-world parallel is editing your own writing. Every editor knows you can't reliably proofread your own work—not because you're careless but because your brain fills in what it expected to write rather than reading what's actually there.

"AI testing AI" functions the same way. It's an echo chamber dressed up as a review process.

What Forward-Thinking CTOs Are Doing Instead

The most effective engineering organizations that I've seen navigate this well share a common structural decision: They've separated code generation from test design. AI handles the execution layer. Humans own the test strategy.

In practice, this means QA engineers are no longer just writing test cases. They're asking interpretive questions:

What was this code supposed to do? This traces intent, not just syntax.

What assumption is it making about the data it receives? This surfaces implicit contracts between system components.

Where does this behavior break down at the edges? This tests boundary conditions that AI-generated code is statistically likely to underhandle.

These teams have also shifted their investment from unit test volume toward behavioral and integration testing.

Unit tests confirm that individual functions execute. Integration tests confirm that systems behave as intended under real conditions. The distinction matters because AI-generated code often passes unit tests while introducing failures at the integration layer.

Additionally, several CTOs I know have formalized a policy of treating AI-generated pull requests with the same scrutiny as code submitted by an external vendor. That framing changes the review dynamic immediately. You wouldn't merge a third-party contribution without understanding it. The same standard should apply to a contribution from a model that has no understanding of your system.

The Org Design Consequence

The instinct to reduce QA investment as AI output scales is almost exactly backwards. More AI-generated code means more output that requires interpretive review. Human judgment about whether what was built matches what was needed requires experience.

The worst scenario I've seen unfold in practice is junior developers accepting AI output at face value, with no senior QA layer and teams racing to production on velocity metrics while defect density quietly climbs in the background. By the time it surfaces, it looks like a testing failure when it's actually a structural one.

This is the new technical debt. It doesn't show up in your sprint metrics or trigger alerts. It accumulates until a production incident forces the conversation nobody wanted to have at scale.

Takeaway

The teams that will earn trust in the AI era aren't the ones shipping fastest. They're the ones whose AI-assisted output actually holds up when customers use it.

Here's the question I'd leave every technology leader with: Does your testing discipline scale as quickly as your AI adoption does? If you can't answer that confidently, the gap between those two curves is exactly where your next crisis is forming.​


Forbes Technology Council is an invitation-only community for world-class CIOs, CTOs and technology executives. Do I qualify?