(self)
| 22 | This class contains methods to test the startup and shutdown of the gRPC service. |
| 23 | """ |
| 24 | def setUp(self): |
| 25 | self.service = subprocess.Popen(["python", "backend.py", "--addr", "localhost:50051"]) |
| 26 | time.sleep(10) |
| 27 | |
| 28 | def tearDown(self) -> None: |
| 29 | self.service.terminate() |
no outgoing calls
no test coverage detected