from __future__ import annotations from host_agent.app import HostAgentApplication, create_application def test_create_application_returns_host_agent_process_shell() -> None: application = create_application() assert isinstance(application, HostAgentApplication) assert application.run() is None