main_test.go 165 B

12345678910111213
  1. //go:build testrunmain
  2. package main
  3. import (
  4. "testing"
  5. "github.com/confluentinc/bincover"
  6. )
  7. func TestBincoverRunMain(t *testing.T) {
  8. bincover.RunTest(main)
  9. }