This method sets up the gRPC service by starting the server
(self)
| 26 | TestBackendServicer is the class that tests the gRPC service |
| 27 | """ |
| 28 | def setUp(self): |
| 29 | """ |
| 30 | This method sets up the gRPC service by starting the server |
| 31 | """ |
| 32 | self.service = subprocess.Popen(["python3", "backend.py", "--addr", "localhost:50051"]) |
| 33 | |
| 34 | def tearDown(self) -> None: |
| 35 | """ |
no outgoing calls
no test coverage detected