From ef9b257a54933a312b8227c432b3dcdd54424e59 Mon Sep 17 00:00:00 2001 From: Anik Stark Date: Wed, 12 Nov 2025 17:25:17 +0100 Subject: [PATCH] add config file to test function evaluator --- cfg/test_function_cfg.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cfg/test_function_cfg.py diff --git a/cfg/test_function_cfg.py b/cfg/test_function_cfg.py new file mode 100644 index 00000000..2b5c2cb0 --- /dev/null +++ b/cfg/test_function_cfg.py @@ -0,0 +1,15 @@ +Node('softcal.function.test', + 'test the function class', + 'tcp://5000', +) + +Mod('sim_writable', + 'frappy_demo.test.SimpleWritable', + 'simulation of a writable for function test', +) + +Mod('function', + 'frappy_psi.softcal.Function', + 'function test', + rawsensor = 'sim_writable', +)