RIC-961:implement Xn and X2 component IDs correctly in E2M
[ric-plt/e2mgr.git] / E2Manager / mocks / routing_manager_client_mock.go
index 24edd55..717703d 100644 (file)
@@ -43,4 +43,16 @@ func (m *RoutingManagerClientMock) DissociateRanE2TInstance(e2tAddress string, r
 
        args := m.Called(e2tAddress, ranName)
        return args.Error(0)
+}
+
+func (m *RoutingManagerClientMock) DissociateAllRans(e2tAddresses []string) error {
+
+args := m.Called(e2tAddresses)
+return args.Error(0)
+}
+
+func (m *RoutingManagerClientMock) DeleteE2TInstance(e2tAddress string, ransToBeDissociated []string) error {
+
+       args := m.Called(e2tAddress, ransToBeDissociated)
+       return args.Error(0)
 }
\ No newline at end of file