Files
cards/src/game/rule/operation/operation_test.go
Bel LaPointe 117250f5c1 hands to int64
2021-03-17 13:36:58 -05:00

14 lines
278 B
Go

package operation
import (
"local/sandbox/cards/src/entity"
"testing"
)
func TestOperationInterface(t *testing.T) {
foo := func(*entity.Game, interface{}) int64 { return 0 }
var _ Int = foo
bar := func(*entity.Game, interface{}) bool { return false }
var _ Bool = bar
}