Example Process used in the course
Before testing the Subprocess, you naturally need to have an idea of what to test. Typically, in the implementation project there will be a list of test cases to go through with a set of instructions of how to undertake testing. Here we do not go through the testing process as such, but you will find basics of how to test a Subprocess in Frends.
This module uses an extremely simple Subprocess as an example. The Subprocess checks the length of a string against the max length of a string. Both parameters are provided as an input for the Subprocess. Below is an illustration of the Subprocess:
The Process calling the Subprocess:
The next article is Example on Giving manual parameters for the execution of a Subprocess