1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-10 03:10:18 +00:00

change admin to toolbox & support task

This commit is contained in:
astaxie
2013-11-20 21:17:49 +08:00
parent 16352579f3
commit 54185df46e
10 changed files with 579 additions and 92 deletions

14
toolbox/profile_test.go Normal file
View File

@ -0,0 +1,14 @@
package toolbox
import (
"os"
"testing"
)
func TestProcessInput(t *testing.T) {
ProcessInput("lookup goroutine", os.Stdout)
ProcessInput("lookup heap", os.Stdout)
ProcessInput("lookup threadcreate", os.Stdout)
ProcessInput("lookup block", os.Stdout)
ProcessInput("gc summary", os.Stdout)
}