Skip to content
Snippets Groups Projects
main_test.go 476 B
package autopeering

import (
	"os"
	"testing"

	"github.com/iotaledger/goshimmer/tools/integration-tests/tester/framework"
)

var f *framework.Framework

// TestMain gets called by the test utility and is executed before any other test in this package.
// It is therefore used to initialize the integration testing framework.
func TestMain(m *testing.M) {
	var err error
	f, err = framework.Instance()
	if err != nil {
		panic(err)
	}

	// call the tests
	os.Exit(m.Run())
}