[RIC-431] Update release tag
[ric-plt/e2mgr.git] / E2Manager / mocks / rnibWriterMock.go
index 9e1070e..292e455 100644 (file)
@@ -17,7 +17,6 @@
 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
 //  platform project (RICP).
 
-
 package mocks
 
 import (
@@ -82,3 +81,31 @@ func (rnibWriterMock *RnibWriterMock) RemoveE2TInstance(address string) error {
 
        return args.Error(0)
 }
+
+func (rnibWriterMock *RnibWriterMock) UpdateGnbCells(nodebInfo *entities.NodebInfo, servedNrCells []*entities.ServedNRCell) error {
+       args := rnibWriterMock.Called(nodebInfo, servedNrCells)
+       return args.Error(0)
+}
+
+func (rnibWriterMock *RnibWriterMock) RemoveServedNrCells(inventoryName string, servedNrCells []*entities.ServedNRCell) error {
+       args := rnibWriterMock.Called(inventoryName, servedNrCells)
+       return args.Error(0)
+}
+
+func (rnibWriterMock *RnibWriterMock) UpdateNodebInfoOnConnectionStatusInversion(nodebInfo *entities.NodebInfo, event string) error {
+       args := rnibWriterMock.Called(nodebInfo, event)
+
+       return args.Error(0)
+}
+
+func (rnibWriterMock *RnibWriterMock) SaveGeneralConfiguration(config *entities.GeneralConfiguration) error {
+       args := rnibWriterMock.Called(config)
+
+       return args.Error(0)
+}
+
+func (rnibWriterMock *RnibWriterMock) RemoveEnb(nodebInfo *entities.NodebInfo) error {
+       args := rnibWriterMock.Called(nodebInfo)
+
+       return args.Error(0)
+}
\ No newline at end of file