|
@@ -10,7 +10,7 @@ import (
|
|
|
func TestLine(t *testing.T) {
|
|
|
var textBuff *bytes.Buffer = &bytes.Buffer{}
|
|
|
textBuff.WriteString("Test Me")
|
|
|
- var line Line = Line{Text: textBuff}
|
|
|
+ var line *Line = &Line{Text: textBuff}
|
|
|
var output string = string(line.Output())
|
|
|
var expect string = string("Test Me")
|
|
|
|
|
@@ -51,7 +51,7 @@ func TestLineUpdate(t *testing.T) {
|
|
|
u.Reset()
|
|
|
fmt.Fprintf(u, "Count: %d", counter)
|
|
|
}
|
|
|
- var line Line = Line{UpdateF: uf}
|
|
|
+ var line *Line = &Line{UpdateF: uf}
|
|
|
line.Update()
|
|
|
var output string = string(line.Output())
|
|
|
var expect string = "Count: 0"
|
|
@@ -82,7 +82,7 @@ func TestLineUnicode(t *testing.T) {
|
|
|
// code point > FFFF, use \U00000000 (not \u).
|
|
|
var lineBuff *bytes.Buffer = &bytes.Buffer{}
|
|
|
lineBuff.WriteString("Howdy \U0001f920")
|
|
|
- var line Line = Line{Text: lineBuff}
|
|
|
+ var line *Line = &Line{Text: lineBuff}
|
|
|
var output []byte = line.Output()
|
|
|
var expect []byte = []byte("Howdy 🤠")
|
|
|
|
|
@@ -111,7 +111,7 @@ func TestLineCP437(t *testing.T) {
|
|
|
for _, test := range tests {
|
|
|
var lineBuff *bytes.Buffer = &bytes.Buffer{}
|
|
|
lineBuff.WriteString(test)
|
|
|
- var line Line = Line{Text: lineBuff}
|
|
|
+ var line *Line = &Line{Text: lineBuff}
|
|
|
var output string = string(line.Output())
|
|
|
var expect string = test
|
|
|
|
|
@@ -132,7 +132,7 @@ func BenchmarkLine(b *testing.B) {
|
|
|
for n := 0; n < b.N; n++ {
|
|
|
var lineBuff *bytes.Buffer = &bytes.Buffer{}
|
|
|
lineBuff.WriteString(fmt.Sprintf("Line %d of %d", n, b.N))
|
|
|
- var line Line = Line{Text: lineBuff}
|
|
|
+ var line *Line = &Line{Text: lineBuff}
|
|
|
line.Output()
|
|
|
}
|
|
|
}
|
|
@@ -143,7 +143,7 @@ func BenchmarkLineColor(b *testing.B) {
|
|
|
for n := 0; n < b.N; n++ {
|
|
|
var lineBuff *bytes.Buffer = &bytes.Buffer{}
|
|
|
lineBuff.WriteString(fmt.Sprintf("Line %d of %d", n, b.N))
|
|
|
- var line Line = Line{Text: lineBuff, DefaultColor: color}
|
|
|
+ var line *Line = &Line{Text: lineBuff, DefaultColor: color}
|
|
|
line.Output()
|
|
|
}
|
|
|
}
|
|
@@ -178,7 +178,7 @@ func printd(value int64, write io.Writer) {
|
|
|
|
|
|
func BenchmarkLineUpdate(b *testing.B) {
|
|
|
Unicode = false
|
|
|
- var line Line = Line{}
|
|
|
+ var line *Line = &Line{}
|
|
|
var n int
|
|
|
|
|
|
line.UpdateF = func(u *bytes.Buffer) {
|
|
@@ -202,7 +202,7 @@ func BenchmarkLineUpdate(b *testing.B) {
|
|
|
func BenchmarkLineRender(b *testing.B) {
|
|
|
Unicode = false
|
|
|
var rf ColorRender = RenderUppercase("RED", "GREEN")
|
|
|
- var line Line = NewLine("ThIs Is CrAzY TeXt HeRe")
|
|
|
+ var line *Line = NewLine("ThIs Is CrAzY TeXt HeRe")
|
|
|
line.RenderF = rf
|
|
|
var n int
|
|
|
|
|
@@ -271,7 +271,7 @@ func BenchmarkLineRenderUpdate(b *testing.B) {
|
|
|
up++
|
|
|
// return fmt.Sprintf("The Value: %d", up)
|
|
|
}
|
|
|
- var line Line = Line{UpdateF: updater,
|
|
|
+ var line *Line = &Line{UpdateF: updater,
|
|
|
RenderF: render,
|
|
|
Width: 18}
|
|
|
|