hybridgroup.gobot/platforms/dji/tello/pitch_test.go

20 lines
426 B
Go

package tello
import (
"testing"
"gobot.io/x/gobot/gobottest"
)
func TestMinidroneValidatePitchWhenEqualOffset(t *testing.T) {
gobottest.Assert(t, ValidatePitch(32767.0, 32767.0), 100)
}
func TestMinidroneValidatePitchWhenTiny(t *testing.T) {
gobottest.Assert(t, ValidatePitch(1.1, 32767.0), 0)
}
func TestMinidroneValidatePitchWhenCentered(t *testing.T) {
gobottest.Assert(t, ValidatePitch(16383.5, 32767.0), 50)
}