github.com/GuanceCloud/cliutils@v1.1.21/pprofparser/tools/parsetoolkit/pprof_test.go (about)

     1  package parsetoolkit
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestFormatDuration(t *testing.T) {
     9  	s := FormatDuration(100_000_000_123)
    10  	fmt.Println(s)
    11  }