1
vote
2answers
54 views

Tools for mutation testing

On our company, we want to start to evaluate a quality of unit tests by creating mutation on our code. Does anyone know any tool for mutation testing that uses Maven and can be integrated into the ...
1
vote
1answer
53 views

good software quality-related Training programs / options?

Does anyone know of some really good software quality-related Training programs / options? I am looking for some formal training options on the topics of ... software quality unit testing ...
1
vote
2answers
111 views

How to derive the execution time growth rate(Big O)?

So I have the following code and I need to derive the execution time growth rate, however I have no idea where to start. My question is, how do I go about doing this? Any help would be appreciated. ...
0
votes
2answers
73 views

Testing Procedure and Process

I'm working with a small team to make web based software. We have modules which are more or less independent pieces of code. While the whole site is not complete, we have a couple modules done, so ...
1
vote
0answers
343 views

How to copy a test script from QC Production environment to QC DEV environment?

How can I copy a test script from QC production environment to QC DEV Environment? I am able to copy a test script from QC production environment to QC TEST Environment,I am able to open two internet ...
0
votes
1answer
110 views

Quality Audit Software applied to Free Software

I'm doing an investigation searching for quality audit software applied to free software but haven't not much luck so far. I already found information of software that make quality audit ...
1
vote
2answers
193 views

Quality Testing Data

Does anyone have recommendations for testing data quality. Imagine you have staged data in one format and executed a process to transfer it to a more relationship normalized format in another ...
2
votes
1answer
173 views

fitnesse test framework, arbitrary properties for test and queries/test runs based on them?

our testers have the requirement to store multiple properties for a test that are not present in the "properties". e.g. they want to store priority, a description(not in the wiki page itself) and so ...
2
votes
5answers
453 views

Howto test SQL statements and ensure their quality?

I am working on some business intelligence reports these days. The data is fetched by ordinary SQL SELECT statements. The statements are getting more and more complex. The data I want to report is ...
0
votes
4answers
327 views

Video or slide-show capture tool for record sequence of actions causes bugs

During QA process we usually need to describe a sequence of actions, that causes some bugs. Usually the best way to do it is describe a situation by text messages. Sometimes screen-shots are helps. ...
1
vote
4answers
169 views

What are the basics someone should know for Testing and Debugging on OS X or Linux?

I have a few of our senior QA engineers in town for a few days and I am in the process of prepping them for testing an app that we are porting to Linux and OS X. These guys are smart. While they are ...
4
votes
8answers
584 views

Tips for balancing between Dogfood and QA?

Most developers are aware of idea of eating one's own dog food, but at the same time its mathematically proven that its cheaper to have QA staff (or Testers) do QA than having developers do QA. Now ...
12
votes
9answers
8k views

JUnit's @Ignore

I wonder if it is a good practice to use JUnit's @Ignore. And how people are using it? I came up with the following use case: Let's say I am developing a class and writing a JUnit test for it, which ...
26
votes
11answers
3k views

How do you measure the quality of your unit tests?

If you (or your organization) aspires to thoroughly unit test your code, how do you measure the success or quality of your efforts? Do you use code coverage, what percentage do you aim for? Do ...
13
votes
6answers
855 views

Writing Quality Tests

We know that code coverage is a poor metric to use when gauging the quality of test code. We also know that testing the language/framework is a waste of time. On the other hand, what metrics can we ...
2
votes
5answers
511 views

Open source or free testing solution

Is there a open source or free suite that can integrate testcases, tests, bugs and possibly the fixes(source code) together. Maintaining the requirements in this system is not a necessity (though, it ...
6
votes
3answers
329 views

Bad Smells When Reviewing Code Affects Approach?

G'day, I was thinking about a comment from Kristopher Johnson about my answer to this question regarding Software Development Quality. I'd posted a list of software quality metrics that I could ...
8
votes
7answers
705 views

How to gauge the quality of a software product

I have a product, X, which we deliver to a client, C every month, including bugfixes, enhancements, new development etc.) Each month, I am asked to err "guarantee" the quality of the product. For ...
7
votes
8answers
6k views

Developer testing vs. QA team testing - What is the right division of work?

While trying to advocate more developer testing, I find the argument "Isn't that QA's job?" is used a lot. In my mind, it doesn't make sense to give the QA team all testing responsibilities, but at ...
0
votes
5answers
227 views

Verifying files for testing

I was working with quality yesterday doing some formal testing. In their procedure they were verifying all files on the test machine were pulled from the release. The way they were verifying these ...