github.com/loov/combiner@v0.1.0/extcombiner/all_test.go (about) 1 package extcombiner 2 3 import ( 4 "testing" 5 6 "github.com/loov/combiner/testsuite" 7 ) 8 9 func Test(t *testing.T) { 10 testsuite.Test.Iterate(All, func(setup *testsuite.Setup) { 11 testsuite.RunTests(t, setup) 12 }) 13 } 14 15 func Benchmark(b *testing.B) { 16 testsuite.Bench.Iterate(All, func(setup *testsuite.Setup) { 17 testsuite.RunBenchmarks(b, setup) 18 }) 19 }