aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/tdewolff/minify/benchmarks/css_test.go
blob: e43a1429ddb87064fc06db7a36671a51bb5ad871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package benchmarks

import (
	"testing"

	"github.com/tdewolff/minify/css"
)

var cssSamples = []string{
	"sample_bootstrap.css",
	"sample_gumby.css",
}

func init() {
	for _, sample := range cssSamples {
		load(sample)
	}
}

func BenchmarkCSS(b *testing.B) {
	for _, sample := range cssSamples {
		b.Run(sample, func(b *testing.B) {
			b.SetBytes(int64(r[sample].Len()))

			for i := 0; i < b.N; i++ {
				r[sample].Reset()
				w[sample].Reset()
				css.Minify(m, w[sample], r[sample], nil)
			}
		})
	}
}