hybridgroup.gobot/platforms/gpio/analog_sensor_driver_test.go

31 lines
676 B
Go
Raw Normal View History

2014-04-28 10:34:16 +08:00
package gpio
import (
2014-06-13 11:08:06 +08:00
"github.com/hybridgroup/gobot"
"testing"
)
2014-06-14 07:01:39 +08:00
func initTestAnalogSensorDriver() *AnalogSensorDriver {
return NewAnalogSensorDriver(newGpioTestAdaptor("adaptor"), "bot", "1")
2014-06-13 11:08:06 +08:00
}
2014-06-14 07:01:39 +08:00
func TestAnalogSensorDriverStart(t *testing.T) {
d := initTestAnalogSensorDriver()
gobot.Assert(t, d.Start(), true)
2014-06-13 11:08:06 +08:00
}
2014-06-14 03:39:02 +08:00
2014-06-14 07:01:39 +08:00
func TestAnalogSensorDriverHalt(t *testing.T) {
d := initTestAnalogSensorDriver()
gobot.Assert(t, d.Halt(), true)
2014-06-13 11:08:06 +08:00
}
2014-06-14 03:39:02 +08:00
2014-06-14 07:01:39 +08:00
func TestAnalogSensorDriverInit(t *testing.T) {
d := initTestAnalogSensorDriver()
gobot.Assert(t, d.Init(), true)
2014-06-13 11:08:06 +08:00
}
2014-06-14 03:39:02 +08:00
2014-06-14 07:01:39 +08:00
func TestAnalogSensorDriverRead(t *testing.T) {
d := initTestAnalogSensorDriver()
gobot.Assert(t, d.Read(), 99)
2014-06-13 11:08:06 +08:00
}