Adding new comments for Oran in all files with licenses
[ric-plt/e2mgr.git] / E2Manager / mocks / rmrMessengerMock.go
index ff6c71f..dccd7d0 100644 (file)
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 // 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
 
@@ -32,13 +35,13 @@ func (m *RmrMessengerMock) Init(port string, maxMsgSize int, flags int, logger *
        return args.Get(0).(*rmrCgo.RmrMessenger)
 }
 
-func (m *RmrMessengerMock) SendMsg(msg *rmrCgo.MBuf, maxMsgSize int) (*rmrCgo.MBuf, error){
-       args := m.Called(msg, maxMsgSize)
+func (m *RmrMessengerMock) SendMsg(msg *rmrCgo.MBuf) (*rmrCgo.MBuf, error){
+       args := m.Called(msg)
        return args.Get(0).(*rmrCgo.MBuf), args.Error(1)
 }
 
 func (m *RmrMessengerMock) RecvMsg() (*rmrCgo.MBuf, error){
-       args := m.Called( )
+       args := m.Called()
        return args.Get(0).(*rmrCgo.MBuf), args.Error(1)
 }