vote up 2 vote down star
1

If you had to do without one or the other in a software project, which would you pick? I've had plenty of projects in which the client or PM thought they could get away without one or the other. We always paid the price.

flag
You're asking a question, and at the same time giving an answer... – George Stocker Dec 6 '08 at 3:21

10 Answers

vote up 3 vote down check

I'd say you could go without Testing rather than Requirements. If you don't have requirements, how do you know what you're developing?

If the programmers are good enough, they should be able to catch most of the egregious errors that testing would find.

link|flag
You're thinking of traditional testing. I don't think it is the best method for reducing error rates. Switching to TDD has been shown to reduce defect rates by 65-90%. – tvanfosson Dec 6 '08 at 3:23
If you go without Testing, how do you know what you developed? :-) – Bill Karwin Dec 6 '08 at 3:24
I don't want to downvote an opinion, but I really disagree with the sentiment that somehow good programmers can make up for the lack of testing. Just think how much better they would be with testing. – tvanfosson Dec 6 '08 at 3:39
@Buzzer - I totally agree. But given the trade-off, I'd say it's probably more expensive to realize you've built the wrong thing vs. finding bugs in the correctly-targeted product. – David Dec 8 '08 at 5:06
TDD doesn't help you pickup on poor user experience or (in some cases) performance issues. – Rob Sanders Dec 8 '08 at 14:58
vote up 6 vote down

Turn this around and repeat after me: "Tests are requirements." :-)

link|flag
vote up 5 vote down

If you mean "formal requirements", I can and easily do without those. I would much prefer a living, breathing customer who can tell me what they want over a rigid, out-of-date document. Having switched to TDD, I wouldn't ever want to go back to a "no test" environment. I choose informal requirements -- stories, on-site customer, and customer-written acceptance tests -- over formal requirements and no tests.

link|flag
vote up 2 vote down

You have to test against the requirements, so if you don't have requirements you can't do testing. So if you have to pick one, you can only pick requirements.

But not doing testing is a path to failure. Guaranteed.

link|flag
Agreed. But I read the question as a formal requirements document since it obviously doesn't make sense to start writing code if you have no idea of what you want to program at all. – tvanfosson Dec 6 '08 at 3:48
vote up 2 vote down

tests (feature and integration) are more important than requirements; if you can specify the tests then you have also specified the requirements, at least implictly

comments are also the developer documentation, with unit tests being the how-to 'quickstart' examples ;-)

link|flag
vote up 1 vote down

If I had to pick one, it would be requirements.
It doesn't have to be a formal, excruciatingly detailed document with twenty signatures, but you have to know exactly what the customer wants and more importantly what the customer needs.

The requirements are also your first communication to the development team. How will they know what you're asking if you're not asking it clearly? At best you're at grave risk of building the wrong thing right. I'd rather have the right thing built slightly wrong.

link|flag
vote up 0 vote down

I would say requirements because there always seems to be some level of "feature creep" from the client when you are developing software. Testing is one of the crucial pieces in the SDLC.

link|flag
Of course there is feature creep. The client doesn't know what they really want until you have actually written something that they can see. This is the reason to deliver early and deliver often -- help the customer figure out what they really want by delivering software they can start using. – tvanfosson Dec 6 '08 at 3:33
It's also the reason why a requirements document is pretty much useless if you care more about delivering what the customer wants than about keeping the customer from asking for things that weren't specified. – tvanfosson Dec 6 '08 at 3:34
vote up 0 vote down

Requirements and testing are important for most projects but if you really have to pick, you should go with requirements. One of the advantages of picking requirements over testing is that, you might save some development time since the developers know what they have to build, and if the development is done with extra time in hand, you can allocate that time for testing :)

link|flag
vote up 0 vote down

Not sure if the requirements are referred to as an artefact or as a process. Although it is possible to skip requirements as artefact especially for smaller teams and still deliver a product, skipping requirements as process is out of question. Requirements as artefact let you model the system at cost lower than building the entire thing, do feasibility, estimates, and for a larger and more disperse team to cut communication overheads and have a common ground under the feet. Neglect the requirements and you get louse estimates (regardless if you plan a lot up front or just do a short sprint), poor idea of feasibility and possibly very inefficient communication and a lot of miscommunication.

Requirements as a process on the other hand is going to exist regardless if it is formally acknowledged or not. You cannot really exclude it, you can pretend requirements process does not exist or integrate into the design, coding, testing or into stages as late as pilot and maintenance. Obviously treating the process in this way mean it will not get fair amount of attention and resource. Consequences normally range from delivering something that is ultimately useless to having to fix the now obvious shortcomings of the product later in the development cycle or even discovering the real requirements once the product fails in the field, increasing the cost of development, defaulting on the deadlines, ruining team’s good name, destroying user confidence etc.

Testing usually boils down to validation and verification, more recently testing technology improvements let automated testing to be used as a solid tool for achieving greater efficiency in debugging and reducing time necessary for regression testing. Validation is making sure that the team has built the right product, i.e. scoped requirements are correct, not contradictory and there are no gaps. Verification on the other hand is making sure that the product is built right: no technical defects, accidental errors etc.

As we can see testing provides a safety net in the scenario where requirements were neglected. Normally as the team starts testing they need to refine their understanding of requirements and as a result modify the software. Since both requirement artefacts and software itself just represent different levels of fidelity in modelling a solution for a real life problem, and software as a model is order of magnitude more precise the testing of application evaluates requirements as well (regardless if they are implicit or explicit, formally analysed or informally communicated).

Normally the alternative to testing is to let users report a substantially larger amount of defects and shortcomings and try and fix them as part of maintenance (meaning later in product lifecycle), increasing the cost of every fix.

So requirements versus testing? Fire the manager. Ok, skip requirements if you want the project schedule slip during the testing phase and get yourself into the mess of building not what users need, skip the testing if you just need to show utter disrespect to your users.

link|flag
vote up 0 vote down

Without requirements you don't need testing since what you end up with is exactly what was spec'd

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.