Closed fkromer closed 6 years ago
wiki.ros.org - 2.1.1 Field Types
In Python 2 and Python 3 implemented with tuple. Use hypothesis tuples() strategy and provide convenient interface (comparable to signature of hypothesis.strategies.lists(elements=None, min_size=None, max_size=None, unique_by=None, unique=False)). Due to performance (and memory) using list strategy and converting it to tuple no option. One strategy for fixed and variable length array #28 (parameters).
tuple
hypothesis.strategies.lists(elements=None, min_size=None, max_size=None, unique_by=None, unique=False)
quick and dirty implementation with hypothesis.strategies.lists(): https://github.com/ros-testing/hypothesis-ros/commit/8e369bae7202a437dd3d1216b87855126f09c02e
hypothesis.strategies.lists()
wiki.ros.org - 2.1.1 Field Types
In Python 2 and Python 3 implemented with
tuple
. Use hypothesis tuples() strategy and provide convenient interface (comparable to signature ofhypothesis.strategies.lists(elements=None, min_size=None, max_size=None, unique_by=None, unique=False)
). Due to performance (and memory) using list strategy and converting it to tuple no option. One strategy for fixed and variable length array #28 (parameters).