The author talks about system integration
in this chapter. The author provides a list of benefits of careful integration.
The author then discusses two different approaches of integration:
The author then discusses two different approaches of integration:
- Phased Integration: In this approach all the routines are designed, coded, tested and debugged
and then are combined to create the system which is then tested and debugged
. Only for tiny programs, this approach seems better.
- Incremental Integration: In this approach, a small functional part of the system, called skeleton, is developed, tested and debugged and then is expanded one routine at a time. The author compares this approach with a snowball
. The author also points out several benefits of using this approach, such as, errors are easy to locate, short development schedule, etc...
- Top-down integration: There are several advantages and disadvantages of this approach:
- The control logic of the system is tested relatively early and frequently.
- A partially working system can be made available early
- The performance issues in low-level routines can bubble to the top of the system
- A lot of stub routines need to be written
- Top-down integration is not possible in object oriented design
- Bottom-up integration: It offers several advantages and disadvantages:
- Errors are easier to locate
- No bubbling of issues from bottom to top
- Since major, high level system interfaces are integrated last, the conceptual design problems are not discovered until later.
- Design of the whole system needs to be complete before the integration starts.
- Sandwich integration: It is a combination of top-down and bottom-up integration.
- Risk-oriented integration: In this approach, risk associated with each routine is identified and the routines with higher risk are are implemented first.
- Feature-oriented integration: One feature is added at a time to the system in this approach.
- Integration takes care of itself
- Product shipping cycles are shorter
- Customer satisfaction is built into a process
- Project status is easier to assess
- Estimation error is reduced
- Development and testing resources are evenly distributed
- Morale improves
- Project completion is more likely
- Improves overall code quality
- Less documentation is required in code
- It requires more planning
- It requires more technical overhead
- It is sometimes used to justify incomplete requirements, design etc...
No comments:
Post a Comment