1
0
mirror of https://github.com/astaxie/beego.git synced 2025-01-10 14:37:13 +00:00
Beego/toolbox/profile_test.go

15 lines
299 B
Go
Raw Permalink Normal View History

2013-11-20 21:17:49 +08:00
package toolbox
2013-11-15 21:45:51 +08:00
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)
}