golifehk/datasources/mtr/bus/query_test.go

13 lines
155 B
Go
Raw Normal View History

2022-09-14 09:12:48 +00:00
package bus
2022-09-13 13:42:51 +00:00
import (
"fmt"
"testing"
)
2022-09-14 13:21:39 +00:00
func TestQuerySchedule( t *testing.T ) {
qo := Query( "zh", "K73 池" )
2022-09-13 13:42:51 +00:00
2022-09-14 13:21:39 +00:00
fmt.Print( qo.Message() )
2022-09-13 13:42:51 +00:00
}