9 lines
154 B
Go
9 lines
154 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestMain_Run(t *testing.T) {
|
||
|
|
// Just ensure the example main runs without panic to contribute to coverage
|
||
|
|
main()
|
||
|
|
}
|