efritz/go-mockgen

View on GitHub
matchers/called_once_matcher.go

Summary

Maintainability
A
0 mins
Test Coverage
package matchers

import (
    "github.com/onsi/gomega/types"
)

func BeCalledOnce() types.GomegaMatcher {
    return BeCalledN(1)
}