Tagged Questions

0
votes
2answers
16 views

Simple online testcase management tool

Hello! I am desperately looking for a simple, online test case management tool. Something inexpensive, for a small team, similar to the on demand version of fogbugz.com. I have found lots of tools …
11
votes
10answers
479 views

css problem: Absolutely positioned parent and float:right child stretches

In IE6, IE7 and FF2 the .outer div below is stretching out to the right edge of the document. Here is a complete test case: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" …
2
votes
4answers
74 views

Writing a re-usable unittest.TestCase method

I'm writing tests using the unittest package, and I want to avoid repeated code. I am going to carry out a number of tests which all require a very similar method, but with only one value different …
0
votes
1answer
110 views

Does MSTest Have an Equivalent to NUnits TestCase

I find the TestCase feature in NUnit quite useful as a quick way to specify test parameters without needing a seperate method for each test. Is there anything similar in MSTest? [TestFixture] …
2
votes
3answers
139 views

How to unittest Session timeout in Django

I have a requirement something like this: As soon as the user signsup(and will be in the waiting state untill he confirms his email address), a session variable is set something like …
0
votes
0answers
73 views

Reports Test Cases

Hi Guys I am about to write test cases for SSRS/Cognos Reports,few of the test cases which can be used to test the Reports Able to login to the Source System Are we able to access the Reports which …
0
votes
3answers
381 views

having javascript force a Selenium test to fail

Is there a way for js code to force Selenium testing to fail? For (a probably bad) example, if I had the following: return document.getElementById('foo').innerHTML == 'hello' is there a way I could …
0
votes
1answer
89 views

Ruby Test Cases

Hi, I have a task of writing some test cases on Ruby. The task is as in example: Visit the some website. (Assert that certain page was displayed) Enter a text into a textbox Press the submit button …
2
votes
5answers
225 views

Test cases for each link in a Website?

Hi guys, I have a pretty basic question about test cases in the world of Website development. Does it make sense to have a separate test case for each hyperlink for all pages in a site? For e.g. my …