testing

If you could recommend only one blog on software testing, which one would it be?

I found a question here about blogs on software development, but I would like to know which blogs on software testing this community reads. If you just have to recommend more than one blog, post each one in separate answer, so others can vote on specific blog. :) Thanks! Edit: I am not interested in sites that aggregate other blogs, b...

How do you do performance testing in Ruby webapps?

I've been looking at ways people test their apps in order decide where to do caching or apply some extra engineering effort, and so far httperf and a simple sesslog have been quite helpful. What tools and tricks did you apply on your projects? ...

How do I get my Visual Studio Test Suite web test to iterate over my data source?

I have Visual Studio web test attached nicely to a data source, but I need to be able to iterate over each entry in the data source. How should I do this? ...

Automated tests for Java Swing GUIs

What options are there for building automated tests for GUIs written in Java Swing? I'd like to test some GUIs which have been written using the NetBeans Swing GUI Builder, so something that works without requiring special tampering of the code under test would be ideal. ...

What do you need from a test harness?

I'm one of the people involved in the Test Anything Protocol (TAP) IETF group (if interested, feel free to join the mailing list). Many programming languages are starting to adopt TAP as their primary testing protocol and they want more from it than what we currently offer. As a result, we'd like to get feedback from people who have a ...

End-to-End application testing from a users standpoint

I am looking for a good way to consistently test my web applications from the end users point of view. I have all kinds of ways to check to make sure my code is working behind the scenes. I can't count the number of times that I make a change to a piece of code, test it and it works fine and then deploy it only to have it blow up somewhe...

Which is the best tool for automatic GUI performance testing?

We are currently testing a Java Swing application for it's performance. I wonder if there is a good tool to automate this? ...

How do you mock params when testing a Rails model's setter?

Given the code from the Complex Form part III how would you go about testing the virtual attribute? def new_task_attributes=(task_attributes) task_attributes.each do |attributes| tasks.build(attributes) end end I am currently trying to test it like this: def test_adding_task_to_project p = Project.new para...

What is the simplest way to stub a complex interface in Java?

My code takes an interface as input but only excercises a couple of the interface's methods (often, just getters). When testing the code, I'd love to define an anonymous inner class that returns the test data. But what do I do about all the other methods that the interface requires? I could use my IDE to auto-generate a stub for the i...

J2ME coverage tools

I need to estimate the code coverage of a test set. The tests are run on a J2ME application, on a physical device. MIDP 2.1, CLDC 1.1 and JSR-75 FileConnection are available. As J2ME is (roughly) a subset of J2SE, tools using java.io.File (like those listed in the only answer so far..) can not be used. This is mainly to identify pieces ...

Offline lorem ipsum generator

What would be a good offline alternative of the online Lipsum generator? It's frustrating when I'm not online and need some placeholder text for testing purpose. A CLI utility would be ideal, so that I can tailor the output to fit my needs. ...

Rational Functional Tester wait for object existence

I'm currently modifying a Java script in Rational Functional Tester and I'm trying to tell RFT to wait for an object with a specified set of properties to appear. Specifically, I want to wait until a table with X number of rows appear. The only way I have been able to do it so far is to add a verification point that just verifies that th...

Automatically verify my website's links are pointing to urls that exist?

Is there a tool to automatically search through my site and test all the links? I hate running across bad urls. ...

Any suggestions for effectively testing AJAX enabled web pages using MSVS Tester Edition Tools?

It seems like MS really left a massive gaping hole in their automated testing tools in Visual Studio for web pages with AJAX components and I have been hard pressed to find any commentary or third party add-ons that remedy the problem. Anyone have any advice on automating web tests in MSVS for AJAX pages? ...

C++ static code analysis tool on Windows

What C++ static code analysis tool are there on Microsoft Windows, and which would you recommend? Please state whether a particular tool relies on cygwin, and whether it cost money. One per post as per for voting up & down. Similar Question: http://stackoverflow.com/questions/141498/what-open-source-c-static-analysis-tools-are-availabl...

Quick and Dirty Usability testing tips?

What are your best usability testing tips? I need quick & cheap. ...

How do you test your web UI to see if it renders uniformly across different browsers?

Tools like Selenium are good for testing user interactions on the web UI. However, I was curious what are people approaches for strictly testing and verifying that web pages are rendered correctly across a set of browsers? Is this even possible? ...

Why can't I delete a file in %ProgramFiles% from a Unit Test via Resharper's Test Runner Unit Test?

I am trying to write a test which, in it's fixtures Setup, it backs up a file and deletes the original, runs the test without the original present, then in the teardown, restores the original from the backup. The file is located in my %ProgramFiles% folder. I get an UnauthorizedAccessException on the fileInfo.Delete() statement. I hav...

Test planning/documentation/management tools

I'm looking for a good, preferably free, test planning and documentation tool. Ideally something that will keep track of which tests have been run against which software version, with reporting ability. There's a whole bunch of tools listed here but are there any others, and which ones have you had the best experience with? (You do run t...

Which continuous integration framework for Perl?

What are the best continuous integration frameworks/projects for Perl and why? ...