Sync from Azure to LF
[ric-plt/resource-status-manager.git] / RSM / mocks / root_controller_mock.go
diff --git a/RSM/mocks/root_controller_mock.go b/RSM/mocks/root_controller_mock.go
new file mode 100644 (file)
index 0000000..bc304c1
--- /dev/null
@@ -0,0 +1,18 @@
+package mocks
+
+import (
+       "github.com/stretchr/testify/mock"
+       "net/http"
+)
+
+type RootControllerMock struct {
+       mock.Mock
+}
+
+func (rc *RootControllerMock) HandleRequest(writer http.ResponseWriter, request *http.Request) {
+       rc.Called()
+}
+
+func (rc *RootControllerMock) HandleHealthCheckRequest(writer http.ResponseWriter, request *http.Request) {
+       rc.Called()
+}