2014-01-07 16:45:53 +01:00
|
|
|
package graphics_test
|
2013-06-15 10:07:14 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
. "."
|
2013-06-19 16:51:41 +02:00
|
|
|
"testing"
|
2013-06-15 10:07:14 +02:00
|
|
|
)
|
|
|
|
|
2013-10-18 20:15:25 +02:00
|
|
|
func TestNextPowerOf2(t *testing.T) {
|
2013-06-15 10:07:14 +02:00
|
|
|
testCases := []struct {
|
|
|
|
expected uint64
|
2013-06-19 16:51:41 +02:00
|
|
|
arg uint64
|
2013-06-15 10:07:14 +02:00
|
|
|
}{
|
|
|
|
{256, 255},
|
|
|
|
{256, 256},
|
|
|
|
{512, 257},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testCase := range testCases {
|
2013-10-18 20:15:25 +02:00
|
|
|
got := NextPowerOf2(testCase.arg)
|
2013-06-15 10:07:14 +02:00
|
|
|
wanted := testCase.expected
|
|
|
|
if wanted != got {
|
|
|
|
t.Errorf("Clp(%d) = %d, wanted %d",
|
|
|
|
testCase.arg, got, wanted)
|
|
|
|
}
|
2013-06-19 16:51:41 +02:00
|
|
|
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
|
|
|
}
|