9 lines
327 B
Python
9 lines
327 B
Python
import cara.apps
|
|
|
|
|
|
def test_app():
|
|
# To start with, let's just test that the application runs. We don't try to
|
|
# do anything fancy to verify how it looks etc., we leave that for manual
|
|
# testing.
|
|
expert_app = cara.apps.ExpertApplication()
|
|
assert expert_app.model_state.concentration_model.room.volume == 75
|