With a Neat Diagram explain Extreme Programming (XP).

5.b) With a Neat Diagram explain Extreme Programming (XP).

Answer:

EXTREME PROGRAMMING (XP) 

Extreme Programming (XP), the most widely used approach to agile software development.

XP Values: Beck defines a set of five values that establish a foundation for all work performed as part of XP- communication, simplicity, feedback, courage, and respect. Each of these values is used as a driver for specific XP activities, actions, and tasks. 

1. Communication: In order to achieve effective communication between software engineers and other stakeholders (e.g., to establish required features and functions for the software), XP emphasizes close, yet informal (verbal) collaboration between customers and developers, the establishment of effective metaphors for communicating important concepts, continuous feedback, and the avoidance of voluminous documentation as a communication medium. 

2. Simplicity: To achieve simplicity, XP restricts developers to design only for immediate needs, rather than consider future needs. The intent is to create a simple design that can be easily implemented in code. If the design must be improved, it can be refactored at a later time.

 3. Feedback: It is derived from three sources: the implemented software itself, the customer, and other software team members. By designing and implementing an effective testing strategy, the software provides the agile team with feedback The degree to which the software implements the output, function, and behavior of the use case is a form of feedback. Finally, as new requirements are derived as part of iterative planning, the team provides the customer with rapid feedback regarding cost and schedule impact. 

4. Courage: Strict adherence to certain XP practices demands courage and discipline. An agile XP team must have the discipline to design for today, recognizing that future requirements may change dramatically, thereby demanding substantial rework of the design and implemented code. 

5. Respect: By following each of these values, the agile team inculcates respect among its members, between other stakeholders and team members, and indirectly, for the software itself. As they achieve successful delivery of software increments, the team develops growing respect for the XP process. 

The XP Process: 

Extreme Programming uses an object-oriented approach as its preferred development paradigm and  encompasses a set of rules and practices that occur within the context of four framework activities: planning,  design, coding, and testing. Figure 3.2 illustrates the XP process 

Planning: The planning activity begins with listening—a requirements gathering activity that enables the technical members of the XP team to understand the business context for the software and to get a broad feel for required output and major features and functionality. 

Design: XP design rigorously follows the KIS (keep it simple) principle. A simple design is always preferred  over a more complex representation. In addition, the design provides implementation guidance for a story as it  is written—nothing less, nothing more. If a difficult design problem is encountered as part of the design of a  story, XP recommends the immediate creation of an operational prototype of that portion of the design. Called  a spike solution, the design prototype is implemented and evaluated. A central notion in XP is that design  occurs both before and after coding commences. Refactoring means that design occurs continuously as the  system is constructed. In fact, the construction activity itself will provide the XP team with guidance on how  to improve the design. 

Coding: After stories are developed and preliminary design work is done, the team does not move to code, but  rather develops a series of unit tests that will exercise each of the stories that is to be included in the current  release. Once the unit test has been created, the developer is better able to focus on what must be implemented  to pass the test. Nothing extraneous is added (KIS). Once the code is complete, it can be unit- tested  immediately, thereby providing instantaneous feedback to the developers. 

A key concept during the coding activity is pair programming. XP recommends that two people work together  at one computer workstation to create code for a story. Problem solving (two heads are often better than one)  and real-time quality assurance. 

Testing: I have already noted that the creation of unit tests before coding commences is a key element of the  XP approach. The unit tests that are created should be implemented using a framework that enables them to be automated. This encourages a regression testing strategy whenever code is modified. As the individual unit tests are organized into a “Universal Testing Suite“. 

Integration and validation testing of the system can occur on a daily basis. XP acceptance tests, also called customer tests, are specified by the customer and focus on overall system features and functionality that are visible and reviewable by the customer. 

Leave a Reply

Your email address will not be published. Required fields are marked *