Fix license headers
[ric-plt/e2mgr.git] / E2Manager / mocks / e2t_instances_manager_mock.go
index 235c76a..586f396 100644 (file)
 // See the License for the specific language governing permissions and
 // limitations under the License.
 //
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package mocks
 
 import (
@@ -46,12 +50,12 @@ func (m *E2TInstancesManagerMock) SelectE2TInstance() (string, error) {
        return args.String(0), args.Error(1)
 }
 
-func (m *E2TInstancesManagerMock) AssociateRan(ranName string, e2tAddress string) error {
+func (m *E2TInstancesManagerMock) AddRanToInstance(ranName string, e2tAddress string) error {
        args := m.Called(ranName, e2tAddress)
        return args.Error(0)
 
 }
-func (m *E2TInstancesManagerMock) DissociateRan(ranName string, e2tAddress string) error {
+func (m *E2TInstancesManagerMock) RemoveRanFromInstance(ranName string, e2tAddress string) error {
        args := m.Called(ranName, e2tAddress)
        return args.Error(0)