-
-
Save a-know/2f99e786ea3828d54eb193c8d3d850c6 to your computer and use it in GitHub Desktop.
Example for testerator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package handlers | |
import ( | |
"fmt" | |
"os" | |
"testing" | |
"github.com/favclip/testerator" | |
) | |
func TestMain(m *testing.M) { | |
_, _, err := testerator.SpinUp() | |
if err != nil { | |
fmt.Printf(err.Error()) | |
os.Exit(1) | |
} | |
status := m.Run() | |
err = testerator.SpinDown() | |
if err != nil { | |
fmt.Printf(err.Error()) | |
os.Exit(1) | |
} | |
os.Exit(status) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment