Comma Properties Parser
Download
Source Code: https://github.com/testify/CommaPropertiesParser.git
Latest Snapshot: Coming Soon
Latest Release: Coming Soon
Description
The Comma Properties Parser is a Testify Properties Parser service that reads in configuration values from a .properties file. Each property name is separated from its value(s) by "=". More than one value can be provided for each property name by separating the values after the "=" by commas (See the property called "TestProperty" in the example file below).
Example Properties File
# ******************************************************** # General Properties # ******************************************************** SITE_IP=localhost:1234 SSH_Endpoint=user:password@localhost:4321 # ******************************************************** # Test Properties # ******************************************************** TestProperty=value1, value2, value3