mirror of
https://github.com/mgechev/revive.git
synced 2025-11-27 22:18:41 +02:00
39 lines
770 B
Go
39 lines
770 B
Go
|
|
package fixtures
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"os"
|
||
|
|
"syscall"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestMain(m *testing.M) {
|
||
|
|
setup()
|
||
|
|
i := m.Run()
|
||
|
|
teardown()
|
||
|
|
os.Exit(i) // MATCH /redundant call to os.Exit in TestMain function, the test runner will handle it automatically as of Go 1.15/
|
||
|
|
syscall.Exit(i) // MATCH /redundant call to syscall.Exit in TestMain function, the test runner will handle it automatically as of Go 1.15/
|
||
|
|
}
|
||
|
|
|
||
|
|
func setup() {
|
||
|
|
fmt.Println("Setup")
|
||
|
|
}
|
||
|
|
|
||
|
|
func teardown() {
|
||
|
|
fmt.Println("Teardown")
|
||
|
|
}
|
||
|
|
|
||
|
|
func Test_function(t *testing.T) {
|
||
|
|
t.Error("Fail")
|
||
|
|
}
|
||
|
|
|
||
|
|
func Test_os_exit(t *testing.T) {
|
||
|
|
// must not match because this is not TestMain function
|
||
|
|
os.Exit(1)
|
||
|
|
}
|
||
|
|
|
||
|
|
func Test_syscall_exit(t *testing.T) {
|
||
|
|
// must not match because this is not TestMain function
|
||
|
|
syscall.Exit(1)
|
||
|
|
}
|