mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-02 22:17:12 +08:00
17 lines
287 B
Go
17 lines
287 B
Go
package i2c
|
|
|
|
import (
|
|
"github.com/hybridgroup/gobot"
|
|
"testing"
|
|
)
|
|
|
|
func initTestHMC6352Driver() *HMC6352Driver {
|
|
return NewHMC6352Driver(TestAdaptor{}, "bot")
|
|
}
|
|
|
|
func TestHMC6352DriverStart(t *testing.T) {
|
|
t.SkipNow()
|
|
d := initTestHMC6352Driver()
|
|
gobot.Expect(t, d.Start(), true)
|
|
}
|