synapsecns/sanguine

View on GitHub
ethergo/chain/chainwatcher/mocks/block_height_watcher.go

Summary

Maintainability
A
1 hr
Test Coverage
// Code generated by mockery v2.14.0. DO NOT EDIT.

package mocks

import mock "github.com/stretchr/testify/mock"

// BlockHeightWatcher is an autogenerated mock type for the BlockHeightWatcher type
type BlockHeightWatcher struct {
    mock.Mock
}

// Subscribe provides a mock function with given fields:
func (_m *BlockHeightWatcher) Subscribe() <-chan uint64 {
    ret := _m.Called()

    var r0 <-chan uint64
    if rf, ok := ret.Get(0).(func() <-chan uint64); ok {
        r0 = rf()
    } else {
        if ret.Get(0) != nil {
            r0 = ret.Get(0).(<-chan uint64)
        }
    }

    return r0
}

// Unsubscribe provides a mock function with given fields: ch
func (_m *BlockHeightWatcher) Unsubscribe(ch <-chan uint64) {
    _m.Called(ch)
}

type mockConstructorTestingTNewBlockHeightWatcher interface {
    mock.TestingT
    Cleanup(func())
}

// NewBlockHeightWatcher creates a new instance of BlockHeightWatcher. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewBlockHeightWatcher(t mockConstructorTestingTNewBlockHeightWatcher) *BlockHeightWatcher {
    mock := &BlockHeightWatcher{}
    mock.Mock.Test(t)

    t.Cleanup(func() { mock.AssertExpectations(t) })

    return mock
}