Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Counter ¶
type Counter interface {
// Increments the counter by 1 and returns the latest value of the counter
Increment() int
// Get the current value of the counter
Get() int
}
func NewCounter ¶
func NewCounter() Counter
NewCounter creates a Counter which is initialised as 0 use this Counter when you need an easy way of tracking the number of function calls that occur in tests
Click to show internal directories.
Click to hide internal directories.