Folding action lines into actions

Encapsulate action lines that perform a single, logical function into user-defined actions to produce tests that are easy to read and maintain.

Action encapsulation involves taking an existing body of action lines and restructuring it internally without changing its functionality.

Encapsulation results in:

It’s always a good idea to do some planning when creating your tests. You organize your tests into separate test modules based on commonality of purpose. For test logic that has a discrete function – especially one that may be required throughout a test and across test modules – you might create a user-defined action that can be accessed from anywhere with a single action line.

Often, however, you may discover after the fact that a set of lines you’ve written would be best incorporated into a discrete action. For these instances, TestArchitect offers an action lines encapsulation feature that allows you to conveniently fold such lines into their own action.

For example, the following two action lines are used to set two fields, pickup city and pickup state, of a window in the Car Rental application to the values Denver and Colorado, respectively.

There is nothing wrong with this, but consider the following:

The ABT solution to this is to define a new action, which we might call enter pickup location, and which performs the individual implementation-specific tasks invisibly from the point of view of the calling entity. With a new action handling the above steps, the action line for achieving the same result could be reduced to this:

By folding the two action lines into an action that encompasses the overall function, the test becomes more readable, less cluttered, and helps insulate the test from its implementation. Now if a control in the target application changes, affecting how locations are entered (such as cities being selected from a list), the change will impact only the single action, not the tests or other actions that make use of this functionality. Moreover, you now have a reusable action that can be applied to any location.

Notes: 

The implementation of the new action, enter pickup location, would look like something this:


Copyright © 2023 LogiGear Corporation. All rights reserved. LogiGear is a registered trademark, and Action Based Testing and TestArchitect are trademarks of LogiGear Corporation. All other trademarks contained herein are the property of their respective owners.

LogiGear Corporation

1730 S. Amphlett Blvd. Suite 200, San Mateo, CA 94402

Tel: +1(800) 322-0333