From 255a49ba5a41b3854dbdfebdec75fb6229450507 Mon Sep 17 00:00:00 2001 From: Galin Simeonov Date: Mon, 31 May 2021 22:02:10 +0300 Subject: added cmake file --- tests/test | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/test (limited to 'tests/test') diff --git a/tests/test b/tests/test new file mode 100644 index 0000000..c976a6d --- /dev/null +++ b/tests/test @@ -0,0 +1,16 @@ +machine flicker +[ + states [ light_off , light_on ]; + + starting on light_on; + + events [ one_second ]; + transitions + [ + from light_on to light_off on event one_second + execute turn_off_light; + from light_off to light_on on event one_second + execute turn_on_light; + ]; +]; + -- cgit v1.2.3