11 lines
119 B
Go
11 lines
119 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
// does this test even make sense?
|
|
func TestExecMain(t *testing.T) {
|
|
go main()
|
|
}
|