zoukankan      html  css  js  c++  java
  • 转载Boost Your Testing Super Powers

    Boost Your Testing Super Powers

    Secret Tools to Add to Your Utility Belt

    by James Bach

    This first appeared on www.StickyMinds.com as a column feature

    When I was three, my favorite cartoon was The Fantastic Four. When my mom discovered this, she changed the channel and forbade me to watch it. Too violent, I guess. She forced me to watch Mr. Rogers instead-as an antidote, I suppose-but my psyche was already too far poisoned. Though I patiently attended the adventures of the Sweatered One, "It's clobberin' time" remained my favorite phrase for months.

    A few days ago, I realized that when I test, I feel like a superhero. The seed planted in 1969 has come to full flower. What I like most about exploratory testing is how I feel when I am flying over a product, using my x-ray vision to spot bugs. I can be like Clark Kent, posing as a normal user, but I can also leap over tall buildings when needed. Having bionic ears, super strength, and the ability to warp time and control natural forces helps too.

    What gives me these fantastic powers, beyond that of the mortal tester? An array of special tools. Which tools? Well, they aren't on Marick and Faught's otherwise fine list of test tools (http://www.testingfaqs.org/tools.htm). The tools I'm talking about are not even sold as test tools. But the power they give you is great.

    X-Ray Vision, Super Strength, and Time Control

    Some tools let you see the invisible.

    Place a transistor radio within about six inches of your processor, tune it to about 975 on the AM dial, and you can actually hear the chip working. This comes in handy when you want to know if a program that appears to be hung is really stuck or just deep in thought. (I learned that trick from Greg Pope.)

    Run Restorator (shareware, $60) which can extract every resource from an application, including all dialog boxes, menu text, and error messages stored in string resources. This tool is handy not only when you're learning all the features of an application and making your test outlines; it's also great for taking snapshots of an application from build to build and identifying how/whether the resources have changed.

    Use InCtrl5 (freeware) if you want to know which files and registry entries change between two points in time. Use it for installation testing or just to discover how a running application modifies files. If you want to monitor these things in real time, Winternals makes a line of inexpensive system-monitoring tools such as Filemon, and Regmon, which monitor all file system activity and registry changes, respectively.

    Other tools let you do things a normal user can't do. For example, EZ Macros ($30) lets you do light record and playback. It's a highly portable and inexpensive alternative to a full featured GUI test tool. Also, Kleptomania ($50) can copy text from dialog boxes, graphic displays, and error messages that normally don't allow copying, and Print Key Pro ($20) gives you precision screenshots.

    One of my favorite tools is Spector ($75), which takes snapshots of the screen every second while I test. This tool is relatively unintrusive, and it's invaluable for answering the question "what was I just doing?" because its VCR-like interface lets me review exactly what was on the screen at any time. I once accidentally recorded a week's worth of my personal computer use. I only noticed it was recording when I noticed strange, huge data files in the Windows directory

    My absolute favorite test tool is Perl. If you have any aptitude for programming at all, consider learning Perl. It's a remarkably powerful language for manipulating data (such as when you need to analyze or create data files for testing), and there are many modules available that allow it to do a dizzying array of wonderful things, such as controlling applications or monitoring system resources or simulating a Web browser. And best of all, Perl is free.

    Look for a Tool's Secret Identity

    Each of these tools has something in common: they are all less than $100, and they were all designed to do something other than testing. Spector, for instance, is designed to spy on cheating spouses and errant children (its splash screen is actually a picture of a man spying on a woman). Restorator was designed to let you customize your applications.

    To find such useful tools, you have to search for them more creatively then just typing "test tool" into a Yahoo search box. Browse Download.com once in a while, and look for utilities. I found Restorator by searching for "resources extract" on Google. Besides download sites, check out tools that come with development toolkits, O/S resource kits, the MSDN library, CDs attached to technical books, vendor Web sites, or ask developers about their favorite tools. Some tools are part of the operating system itself, but you'll never know unless you hunt for them.

    If you find any other cool, cheap tools, let me know. I'm trying to compile a big list. So, flame on! It's bug clobberin' time!

  • 相关阅读:
    Java基于opencv实现图像数字识别(五)—腐蚀、膨胀处理
    Java基于opencv实现图像数字识别(四)—图像降噪
    Java基于opencv实现图像数字识别(三)—灰度化和二值化
    Java基于opencv实现图像数字识别(二)—基本流程
    通过对表格数据的选择对input的value进行修改
    datagrid可编辑表格
    DataGrid中的事件和方法
    DataGrid中的常用属性
    Spring中AOP(通知)的使用
    ComboTree 的json格式和引用
  • 原文地址:https://www.cnblogs.com/SophiaTang/p/2274608.html
Copyright © 2011-2022 走看看