12 lines
113 B
Go
12 lines
113 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(t *testing.T) {
|
|
log.SetFlags(log.Llongfile)
|
|
main()
|
|
}
|