You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
395 B
32 lines
395 B
2 months ago
|
package pprof
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
var datas []string
|
||
|
|
||
|
const url = "https://github.com/EDDYCJY"
|
||
|
|
||
|
func TestAdd(t *testing.T) {
|
||
|
s := Add(url)
|
||
|
if s == "" {
|
||
|
t.Errorf("Test.Add error!")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Add(str string) string {
|
||
|
data := []byte(str)
|
||
|
sData := string(data)
|
||
|
datas = append(datas, sData)
|
||
|
|
||
|
return sData
|
||
|
}
|
||
|
|
||
|
func BenchmarkAdd(b *testing.B) {
|
||
|
|
||
|
for i := 0; i < b.N; i++ {
|
||
|
Add(url)
|
||
|
}
|
||
|
}
|