Book Image

Learning Modular Java Programming

By : Tejaswini Mandar Jog
Book Image

Learning Modular Java Programming

By: Tejaswini Mandar Jog

Overview of this book

Modular programming means dividing an application into small parts and then developing it. It is an approach taken by developers to build applications and helps them add efficiency in their development process, thus making it more effective. The book starts with the fundamentals of Modular Programming. Then we move on to the actual implementation, where we teach developers how to divide an application into different modules or layers (such as presentation, execution, security, lifecycle, services, and so on) for better management. Once readers are well-versed in these modules and their development, the book shows how to create bindings in order to join these different modules and form a complete application. Next, the readers will learn how to manage these modules through dependency injection. Later, we move on to testing; readers will learn how to test the different modules of an application. The book ends by teaching readers how to maintain different versions of their application and how to modify it. By the end of the book, readers will have a good understanding of modular programming and will be able to use it to build applications with Java.
Table of Contents (15 chapters)

Software testing


An application is the solution to a problem proposed by the client. In providing the solution, the developer provides an implementation depending upon some rules and algorithms. They concentrate on providing a correct implementation to achieve the appropriate level of quality, which meets the client requirement in all aspects. The developed application must be verified to ensure that it meets the correct requirement and specifications. The process of verifying, to prove that the product is working correctly, is more precisely called; software testing.

Software testing cannot guarantee that the application is high-quality software, but it ensures that the application will operate in a given manner based on the values provided to it. It finds the flaws in the application but doesn't guarantee their absence. We always need to remember that testing of an application is always dependent upon the values which the tester is going to provide. So if a tester fails to judge the condition...