go-ssb-room/admindb/mockdb/room.go

38 lines
973 B
Go

// Code generated by counterfeiter. DO NOT EDIT.
package mockdb
import (
"sync"
"github.com/ssb-ngi-pointer/go-ssb-room/admindb"
)
type FakeRoomService struct {
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeRoomService) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeRoomService) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
var _ admindb.RoomService = new(FakeRoomService)