JMockit An automated testing toolkit for Java

Testing enterprise applications

  1. Scenario-based testing
  2. An example
    1. Using Java EE
    2. Using the Spring framework

An enterprise application targets a particular business domain, usually having a GUI for multiple concurrent users and an application database for many entity types; also, it often integrates with other applications inside or outside the organization. In Java, the Java EE APIs and/or the Spring framework are typically used when building such applications.

In this chapter we describe an approach to test Java enterprise applications by writing scenario-based tests, where each test exercises a single well-defined business scenario (also known as a "use case" or "usage" scenario). With a typical layered architecture, such a test calls a public method from a component in the highest layer (normally, the presentation or "UI" layer), which then calls down to lower layers.

Scenario-based testing

An example

Using Java EE

Using the Spring framework