Alex Ellis f954bf0733 Merge master into breakout_swarm
Signed-off-by: Alex Ellis <alexellis2@gmail.com>
2018-02-01 09:29:54 +00:00

15 lines
275 B
Go

// Copyright 2017 Apcera Inc. All rights reserved.
package test
import (
"os"
"testing"
)
// TestMain runs all tests. Added since tests were moved to a separate package.
func TestMain(m *testing.M) {
// call flag.Parse() here if TestMain uses flags
os.Exit(m.Run())
}