TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Exploratory Testing

67 pointsby PretzelFischover 5 years ago

2 comments

Ididntdothisover 5 years ago
From my experience most new bugs get found through exploratory testing. Automated testing is more for confirming that the system still works but not for finding tricky bugs.<p>It works especially well if the tester has a lot of experience as developer or tester. When I test a piece of software where I know the stack that’s used I usually can guess the difficult parts where the devs may have made mistakes. And of course you need real users. They do stuff nobody ever thought about during development.
评论 #21601942 未加载
评论 #21601837 未加载
评论 #21603078 未加载
评论 #21601835 未加载
评论 #21602412 未加载
squeaky-cleanover 5 years ago
This reminded me of a blog by Michael Feathers about a similar idea he calls Characterization Testing. There&#x27;s also some code examples. The difference is instead of trying to find out where the gaps are in your scripted testing, it is about creating tests in order to understand something that isn&#x27;t tested or has an unclear specification. The intentions are slightly different, but the I&#x27;d think the process is the same.<p><a href="https:&#x2F;&#x2F;michaelfeathers.silvrback.com&#x2F;characterization-testing" rel="nofollow">https:&#x2F;&#x2F;michaelfeathers.silvrback.com&#x2F;characterization-testi...</a>