-
-
Notifications
You must be signed in to change notification settings - Fork 726
Parse strings as multi-element data structures in tests #514
Copy link
Copy link
Open
Labels
Good first issueA good issue for community members new to contributingA good issue for community members new to contributingtype:EnhancementImprovement of existing methods or implementationImprovement of existing methods or implementationtype:InfrastructureInfrastructure/ecosystem related changes, such as CMake or buildbotsInfrastructure/ecosystem related changes, such as CMake or buildbots
Metadata
Metadata
Assignees
Labels
Good first issueA good issue for community members new to contributingA good issue for community members new to contributingtype:EnhancementImprovement of existing methods or implementationImprovement of existing methods or implementationtype:InfrastructureInfrastructure/ecosystem related changes, such as CMake or buildbotsInfrastructure/ecosystem related changes, such as CMake or buildbots
Description
Some tests require a number of arguments that are part of the same data structures (e.g. the image size, or resolution). Having a utility function in a single place to parse the input parameter strings as a multi-element data structure (e.g. a vector) would be desirable.
Expected behavior
To be able to parse a string as a vector or whatever multi-element data structure.
Actual behavior
Developer's are forced to parse the string on each test that requires such an input.