A short introduction to XP

 

Extreme programming (XP) is a software development methodology which is intended to improve software quality and responsiveness to gearchanging customer requirements. As a type of agile software development, it advocates frequent “releases” in short development cycles, which is intended to improve productivity and introduce checkpoints at which new customer requirements can be adopted.

Other elements of extreme programming include: programming in pairs or doing extensive code review, unit testing of all code, avoiding programming of features until they are actually needed, a flat management structure, simplicity and clarity in code, expecting changes in the customer’s requirements as time passes and the problem is better understood, and frequent communication with the customer and among programmers.

The methodology takes its name from the idea that the beneficial elements of traditional software engineering practices are taken to “extreme” levels. As an example, code reviews are considered a beneficial practice; taken to the extreme, code can be reviewed continuously, i.e. the practice of pair programming.

Activities
XP describes four basic activities that are performed within the software development process:

  • Coding
    The advocates of XP argue that the only truly important product of the system development process is code. Without code, there is no working product.Coding can also be used to figure out the most suitable solution. Coding can also help to communicate thoughts about programming problems. A programmer dealing with a complex programming problem, or finding it hard to explain the solution to fellow programmers, might code it in a simplified manner and use the code to demonstrate what he or she means. Code, is always clear and concise and cannot be interpreted in more than one way.
  • Testing
    Extreme programming’s approach is that if a little testing can eliminate a few flaws, a lot of testing can eliminate many more flaws.Unit tests determine whether a given feature works as intended. A programmer writes as many automated tests as they can think of that might “break” the code; if all tests run successfully, then the coding is complete. Every piece of code that is written is tested before moving on to the next feature.Acceptance tests verify that the requirements as understood by the programmers satisfy the customer’s actual requirements.
  • Listening
    Programmers must listen to what the customers need the system to do, what “business logic” is needed. They must understand these needs well enough to give the customer feedback about the technical aspects of how the problem might be solved, or cannot be solved. Communication between the customer and programmer is further addressed in the planning game.
  • Designing
    From the point of view of simplicity, of course one could say that system development doesn’t need more than coding, testing and listening. If those activities are performed well, the result should always be a system that works. In practice, this will not work. One can come a long way without designing but at a given time one will get stuck. The system becomes too complex and the dependencies within the system cease to be clear. One can avoid this by creating a design structure that organizes the logic in the system. Good design will avoid lots of dependencies within a system; this means that changing one part of the system will not affect other parts of the system.

1 thought on “A short introduction to XP

Leave a comment