Add R5 content to master
[ric-plt/e2mgr.git] / E2Manager / mocks / nodeb_controller_mock.go
index eafc935..11130b3 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package mocks
 
 import (
@@ -71,3 +74,17 @@ func (c *NodebControllerMock) EndcSetup(writer http.ResponseWriter, r *http.Requ
 
        c.Called()
 }
+
+func (c *NodebControllerMock) UpdateGnb(writer http.ResponseWriter, r *http.Request) {
+       writer.Header().Set("Content-Type", "application/json")
+       writer.WriteHeader(http.StatusOK)
+
+       c.Called()
+}
+
+func (c *NodebControllerMock) SetGeneralConfiguration(writer http.ResponseWriter, r *http.Request) {
+       writer.Header().Set("Content-Type", "application/json")
+       writer.WriteHeader(http.StatusOK)
+
+       c.Called()
+}
\ No newline at end of file