6 lines
186 B
Python
6 lines
186 B
Python
|
|
# test_pyfmi.py
|
||
|
|
from pyfmi.examples import fmi_bouncing_ball_cs
|
||
|
|
|
||
|
|
print("Testing PyFMI installation...")
|
||
|
|
fmi_bouncing_ball_cs.run_demo()
|
||
|
|
print("✅ PyFMI and FMI Library work correctly!")
|