[RICPLT-2584] Implementation of E2TShutdownManager + Automation fix
[ric-plt/e2mgr.git] / E2Manager / mocks / routing_manager_client_mock.go
index fb1cafd..0652276 100644 (file)
@@ -49,4 +49,10 @@ func (m *RoutingManagerClientMock) DissociateAllRans(e2tAddresses []string) erro
 
 args := m.Called(e2tAddresses)
 return args.Error(0)
+}
+
+func (m *RoutingManagerClientMock) DeleteE2TInstance(e2tAddress string, ransToBeDissociated []string, e2tToRansAssociations map[string][]string) error {
+
+       args := m.Called(e2tAddress, ransToBeDissociated, e2tToRansAssociations)
+       return args.Error(0)
 }
\ No newline at end of file