Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The workflow test runner can also be integrated into a CI/CD pipeline. For more information, please see: Workflow Test Runner in Azure Devops

Configuration


fig1: layout of the workflowtestrun configuration

...

  • date date as yyyy-MM-dd
  • time the time of day as HH:mm:ss


testReport

Since 20222021.01. It is possible to generate a JUnit XML compliant XML report with the test results. Currently only junitXml is supported. This can typically be used in a build pipeline like Azure Devops or Teamcity.

...

Exports the given time series to PI formatted file.

Since 20222021.01 the version of the PI format can be specified as well using the piVersion element.

...

Refreshes datastore. Empty element.

ContainsActivity

Search for the presence of text in a file

attributes:

  • searchFile file to search through
  • searchString array of strings to search for. All specified strings have to occur for the activity to complete successful.
  • emptyFile check if file is empty

NotContainsActivity

Search if text doesn't occur in a file

attributes:

  • searchFile file to search through
  • searchString array of strings to search for. If any of these search strings appear in the file, the activity fails.
  • emptyFile check if file is NOT empty

SleepActivity

Let process sleep for configured amount of milli seconds

...