1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-07-15 14:45:48 +00:00
arikawa/api/math_test.go
Maximilian von Lindern cc1975988d
API: abstract away boundary limits for DeleteMessages (#159)
remove boundary limits for DeleteMessages
rename deleteMessages to deleteMessagesRaw
use constant instead of limit literal
add min helper func
rename utils.go to math.go
2020-11-10 15:34:05 -08:00

40 lines
596 B
Go

package api
import "testing"
func Test_min(t *testing.T) {
testCases := []struct {
name string
a, b int
expect int
}{
{
name: "first smaller",
a: 1,
b: 2,
expect: 1,
},
{
name: "both equal",
a: 1,
b: 1,
expect: 1,
},
{
name: "last smaller",
a: 2,
b: 1,
expect: 1,
},
}
for _, c := range testCases {
t.Run(c.name, func(t *testing.T) {
actual := min(c.a, c.b)
if c.expect != actual {
t.Errorf("expected min(%d, %d) to return %d, but did %d", c.a, c.b, c.expect, actual)
}
})
}
}