Tag Archives: Mistakes

Counting strings in a file: Ruby vs Windows Command shell

This is not the usual material that I put up, but I’d like to immortalize an event that demonstrated yet again the beauty of Ruby for basic file manipulation, especially in contrast to doing the same in a Windows command … Continue reading

Posted in Making Life Easier, Mistakes, Ruby, Tools | Tagged , , , | 2 Comments

Finding the balance between hacky and over-engineered UI test automation frameworks

There are very few real requirements for a UI test automation framework: It should provide accurate test results It should provide accurate test results every time you ask it for results It should make it easy to write tests It … Continue reading

Posted in Automated Testing, General Testing Stuff, Mistakes, Test Management, Testing Theory | Tagged , , | 1 Comment

Careful with that Test Data…

It doesn’t happen too often but when it does, it’s hilarious: test data escaping the testing environment. I’ve heard of this happening a few times, but here’s the funiest one so far: http://catless.ncl.ac.uk/Risks/14.89.html#subj3 Bookmark to:

Posted in General Testing Stuff, Test Data | Tagged , | Leave a comment

Test Case Interdependency

One of the most common ways of structuring a series of test cases is to make one test case dependent on the outcome of another. For example, Test Case ‘A’ verifies the functionality surrounding the ability to create an account. … Continue reading

Posted in Automated Testing, Manual Testing, Mistakes, Test Management, Testing Theory | Tagged , | 1 Comment