mirror of
https://github.com/miekg/dns.git
synced 2025-10-13 19:01:01 +02:00
16 lines
339 B
Go
16 lines
339 B
Go
package main
|
|
|
|
import "dns/strconv"
|
|
import "testing"
|
|
import __regexp__ "regexp"
|
|
|
|
var tests = []testing.InternalTest{
|
|
{"strconv.TestConversion", strconv.TestConversion},
|
|
}
|
|
var benchmarks = []testing.InternalBenchmark{}
|
|
|
|
func main() {
|
|
testing.Main(__regexp__.MatchString, tests)
|
|
testing.RunBenchmarks(__regexp__.MatchString, benchmarks)
|
|
}
|