The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
173 views

What test generators do exist?

What tools exist to automatically generate test scripts (or test script templates) from a formal specification or a program's source code? EDIT: The background of this question is, that I’m ...
3
votes
1answer
94 views

Are there common techniques for testing the conformance of an implementation to a general contract?

Say you have defined some abstract interface and you specify a general contract for that interface to which all implementations must adhere. Are there common techniques that can facilitate testing the ...
0
votes
2answers
120 views

Layer testing - How should I test data replication/update?

I have a development background and now I'm starting with software QA. While building a solution developers often create code which is shared among different platforms/applications. One example is the ...
5
votes
3answers
132 views

Is it effective to have the tester of the software also be the business analyst?

I work as a business analyst leading the charge on a medium sized internal software project. It's my job to create the requirements, design the UI, write the functional specs, work with the ...
3
votes
1answer
372 views

Regression testing for web services and SharePoint workflows - What should I research?

Apologies if this question has been addressed before or not relevant to this exchange. I did some initial searching and I've only recently discovered this area of stackexchange so I'm unsure of the ...
4
votes
1answer
216 views

PHP: code instrumentation library to capture/record new unit test cases?

I have a library that seems to work as intended. I would like to add some instrumentation to the library to capture (some) current input and the result and save that as a test case. Is there a library ...
4
votes
6answers
263 views

Why bother writing/executing a test whose results will never be used?

A discussion with friends recently wandered on to the topic of tests that are executed yet whose results are never used. Why bother running them? Why bother even writing them? Thinking of them we all ...
2
votes
2answers
201 views

How do you drive what testcases to write based on a large decision table?

I have constructed a large decision table based on the possible inputs I can have. My question is, how do I determine what test cases to write?
9
votes
13answers
621 views

Should automated tests be efficient?

I've written and edited a bunch of automated GUI tests. In some cases, the tests are inefficient (eg to select an item from a list, instead of a clever search, a dialog is opened and starting fro the ...
3
votes
3answers
261 views

Difference between “Testing Behaviour” and “Test Case”

I'm new to software testing and would like to know the difference between "test case" and "testing behavior". For example, a registration form on the web has the following fields: -Name: ...
15
votes
9answers
3k views

Page Objects design issues

I have started using the Selenium 2 /Webdriver web automation framework a couple of weeks ago and I'm generally pleased, but I find myself unsure about how to best design my Page Objects. The ...
16
votes
10answers
4k views

When writing manual test cases and scripts, how much detail is too much detail when documenting the steps?

One of the things that I try to balance when writing out test scripts for manual testing is trusting that the person executing the test (which may not always be me) is reasonably competent to know how ...
3
votes
5answers
576 views

How do you approach a new project from a testing perspective?

I am preparing an initial test plan document for a new project. The project involves several layers of HW and software and requires mainly black box testing but also some level of grey box testing ...
7
votes
2answers
373 views

Testing NOSQL DB's like distributed Cassandra

Has anybody worked on testing Cassandra DB which is a NOSQL distributed DB? What are the important things to be taken into account while doing this?
51
votes
10answers
2k views

1.5 Million lines of code. 0 tests. Where should we start?

I'm a Java developer by trade. I was 'brought-up' in what you could call best practices. Then I took my current job. I had a choice between the Java/SOA team, and the ERP team. I was told that joining ...