hybridgroup.gobot/platforms/leap/leap_motion_adaptor_test.go

23 lines
486 B
Go
Raw Normal View History

2014-06-14 04:35:19 +08:00
package leap
import (
"github.com/hybridgroup/gobot"
"testing"
)
2014-06-14 07:01:39 +08:00
func initTestLeapMotionAdaptor() *LeapMotionAdaptor {
2014-11-08 05:15:45 +08:00
a := NewLeapMotionAdaptor("bot", "")
2014-11-20 07:11:00 +08:00
a.connect = func(l *LeapMotionAdaptor) (err error) { return nil }
2014-11-08 05:15:45 +08:00
return a
2014-06-14 04:35:19 +08:00
}
2014-06-14 07:01:39 +08:00
func TestLeapMotionAdaptorConnect(t *testing.T) {
a := initTestLeapMotionAdaptor()
gobot.Assert(t, a.Connect(), nil)
2014-06-14 04:35:19 +08:00
}
2014-06-14 07:01:39 +08:00
func TestLeapMotionAdaptorFinalize(t *testing.T) {
a := initTestLeapMotionAdaptor()
gobot.Assert(t, a.Finalize(), nil)
2014-06-14 04:35:19 +08:00
}