Tagged Questions
1
vote
5answers
256 views
Improve Bad testing
We have a large team of developers and testers. The ratio is one tester for every one developer.
We have full bug tracking and reporting systems in place.
We have test plans in place.
Every change ...
12
votes
4answers
625 views
Developing with confidence without a real development environment
I've recently been hired for a project that involves working with and around several third-party "enterprise" systems. Due to what I imagine would be the astronomical cost and effort required to build ...
7
votes
3answers
425 views
How important are unit tests in software development? [closed]
We are doing software testing by testing a lot of I/O cases, so developers and system analysts can open reviews and test for their committed code within a given time period (e.g. 1 week). But when ...
39
votes
8answers
2k views
Does software testing methodology rely on flawed data?
It’s a well-known fact in software engineering that the cost of fixing a bug increases exponentially the later in development that bug is discovered. This is supported by data published in Code ...
7
votes
11answers
519 views
Is it correct to fix bugs without adding new features when releasing software for system testing?
This question is to experienced testers or test leads.
This is a scenario from a software project:
Say the dev team have completed the first iteration of 10 features and released it to system ...
3
votes
5answers
742 views
How to test a program in an efficient way?
I know that a writing test case is one of the way to do some programming level testing, but how to test some careless mistake? or how to reduce? For example, a buttonA, should perform ActionA, but ...
13
votes
6answers
2k views
Good workflow for software development with scrum and continuous integration
I'm studying an approach to understand better how the continuous integration workflow fits better in a software development company with the scrum method.
I'm thinking something like this:
Would ...
8
votes
8answers
558 views
Should developers be involved in testing phases?
we are using a classical V-shaped development process. We then have requirements, architecture, design, implementation, integration tests, system tests and acceptance.
Testers are preparing test cases ...
15
votes
13answers
1k views
How To Know When To Stop Testing?
I know this is a very very basic question. For some software applications there are a large almost infinitely high number of test cases for an application. It is not practical to test all those test ...
58
votes
27answers
5k views
Why to let / not let developers test their own work
I want to gather some arguments as to why letting a developer testing his/her own work as the last step before the product goes into production is a bad idea, because unfortunately, my place of work ...
4
votes
0answers
297 views
Why there is a testing team? [duplicate]
Possible Duplicate:
Why to let / not let developers test their own work
Developers develop the code and software. Ya that means they know very well of what they have done. But why there is ...
2
votes
9answers
634 views
How do you QA and release software quickly with a large team?
My work used to be a smaller team. We had less than 13 devs for a while. We are now growing rapidly, and are over 20 with plans to be over 30 in a few months.
Our process for QA'ing and releasing ...
7
votes
7answers
403 views
Acceptance tests done first…how can this be accomplished?
The basic gist of most Agile methods is that a feature is not "done" until it's been developed, tested, and in many cases released. This is supposed to happen in quick turnaround chunks of time such ...
2
votes
4answers
443 views
Should code reviewers test as part of the review? [duplicate]
Possible Duplicate:
trust factor in code review
Where I work, we have very few rules about what constitutes a code review. In addition to going through the code, I tend to briefly test out ...
8
votes
7answers
329 views
Which format is best for the first prototype not on paper?
Console app (my favorite), quick & sloppy form, MS Paint (for GUI); what works best most of the time for your standard application? why?