tree_test.go 177 B

12345678910111213
  1. package service
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestTree(t *testing.T) {
  7. convey.Convey("tree", t, func() {
  8. t.Log("tree test")
  9. })
  10. }