14 lines
133 B
Go
14 lines
133 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"goravel/bootstrap"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
bootstrap.Boot()
|
|
os.Exit(m.Run())
|
|
}
|