Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/wavetermdev/waveterm
/ makeText
Function
makeText
pkg/filestore/blockstore_test.go:495–501 ·
view source on GitHub ↗
(n int)
Source
from the content-addressed store, hash-verified
493
}
494
495
func
makeText(n int) string {
496
var
buf bytes.Buffer
497
for
i := 0; i < n; i++ {
498
buf.WriteByte(byte(
'0'
+ (i % 10)))
499
}
500
return
buf.String()
501
}
502
503
func
TestMultiPart(t *testing.T) {
504
initDb(t)
Callers
1
TestMultiPart
Function · 0.85
Calls
1
String
Method · 0.45
Tested by
no test coverage detected