|
@@ -131,7 +131,8 @@ 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))
|
|
|
+ fmt.Fprintf(lineBuff, "Line %d of %d", n, b.N)
|
|
|
+ // lineBuff.WriteString(fmt.Sprintf("Line %d of %d", n, b.N))
|
|
|
var line *Line = &Line{Text: lineBuff}
|
|
|
line.Output()
|
|
|
}
|
|
@@ -142,7 +143,21 @@ 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))
|
|
|
+ fmt.Fprintf(lineBuff, "Line %d of %d", n, b.N)
|
|
|
+ // lineBuff.WriteString(fmt.Sprintf("Line %d of %d", n, b.N))
|
|
|
+ var line *Line = &Line{Text: lineBuff, DefaultColor: color}
|
|
|
+ line.Output()
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func BenchmarkLineColorUnicode(b *testing.B) {
|
|
|
+ Unicode = true
|
|
|
+ color := ColorText("BRI WHI ON BLUE")
|
|
|
+
|
|
|
+ for n := 0; n < b.N; n++ {
|
|
|
+ var lineBuff *bytes.Buffer = &bytes.Buffer{}
|
|
|
+ fmt.Fprintf(lineBuff, "Line %d of %d", n, b.N)
|
|
|
+ // lineBuff.WriteString(fmt.Sprintf("Line %d of %d", n, b.N))
|
|
|
var line *Line = &Line{Text: lineBuff, DefaultColor: color}
|
|
|
line.Output()
|
|
|
}
|