topfreegames/khan

View on GitHub
loadtest/operation.go

Summary

Maintainability
A
0 mins
Test Coverage
package loadtest

// operation represents a Khan operation to be tested in the load tests
type operation struct {
    probability float64
    canExecute  func() (bool, error)
    execute     func() error
}