Skip to content

Commit e4fb44d

Browse files
committed
tree_test
test class #1
1 parent 28642ab commit e4fb44d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tree_test.go

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
11
package godzilla
2+
3+
func catchPanic(f func()) (recv interface{}) {
4+
defer func() {
5+
recv = recover()
6+
}()
7+
8+
f()
9+
10+
return
11+
}
12+
13+
type testRouter struct {
14+
path string
15+
conflict bool
16+
}

0 commit comments

Comments
 (0)