Does waterfall require code complete before QA steps in?

Posted by P.Brian.Mackey on Programmers See other posts from Programmers or by P.Brian.Mackey
Published on 2011-11-21T20:00:02Z Indexed on 2011/11/22 2:09 UTC
Read the original article Hit count: 393

Filed under:
|

The process used at a certain company consists of:

  1. Create a layout according to some designs made in a web page design tool. (CSS, html)
  2. Requirements come in with "functional requirements". These consist of 100's of lines of business directions. E.G. Create a Table on page X. Column1 has numeric data. Column1 is the client code. Column2 is a string...etc.

  3. Write code to meet all functional requirements.

  4. When all code is checked in, send to QA (which is the BA that wrote the requirements) for inspection, bug finds and change requests.
  5. Punt back to developer with a list of X bugs and Y change requests.
  6. While bug finds or change requests > 0 go to step 4.

The agile development environments I have worked in allow, if not demand, early QA inspection and early user acceptance. So, pieces of the program can be refined and redefined before the entire application is in place.

Not only that, but the process leaves little room for error or people changing their minds. Instead, those "change requests" come in at the last stage when they do the most damage. And being that a bug-fix's cost increases over time, this is a costly way to write code.

I am no waterfall expert. As described, is this waterfall being mishandled in some way? How does waterfall address my concerns?

© Programmers or respective owner

Related posts about agile

Related posts about waterfall