Close gracefully shuts down the ATE agent connection.
()
| 121 | |
| 122 | // Close gracefully shuts down the ATE agent connection. |
| 123 | func (a *SubstrateAgent) Close() error { |
| 124 | if a.ateClient != nil { |
| 125 | return a.ateClient.Close() |
| 126 | } |
| 127 | return nil |
| 128 | } |