Sync from Azure to LF
[ric-plt/resource-status-manager.git] / RSM / mocks / root_controller_mock.go
1 package mocks
2
3 import (
4         "github.com/stretchr/testify/mock"
5         "net/http"
6 )
7
8 type RootControllerMock struct {
9         mock.Mock
10 }
11
12 func (rc *RootControllerMock) HandleRequest(writer http.ResponseWriter, request *http.Request) {
13         rc.Called()
14 }
15
16 func (rc *RootControllerMock) HandleHealthCheckRequest(writer http.ResponseWriter, request *http.Request) {
17         rc.Called()
18 }