mtl-aas/stl/test_parser.py
2017-10-26 22:00:03 -07:00

11 lines
264 B
Python

# -*- coding: utf-8 -*-
from hypothesis import event, given
import stl
from stl.hypothesis import SignalTemporalLogicStrategy
@given(SignalTemporalLogicStrategy)
def test_invertable_repr(phi):
event(str(phi))
assert str(phi) == str(stl.parse(str(phi)))