forked from Snider/Poindexter
9 lines
247 B
Go
9 lines
247 B
Go
package main
|
|
|
|
import "testing"
|
|
|
|
// TestExampleMain runs the example's main function to ensure it executes without panic.
|
|
// This also allows the example code paths to be included in coverage reports.
|
|
func TestExampleMain(t *testing.T) {
|
|
main()
|
|
}
|