1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
package gunit
import (
"reflect"
"runtime"
"testing"
"github.com/smartystreets/gunit/scan"
)
// Run receives an instance of a struct that embeds *Fixture.
// The struct definition may include Setup*, Teardown*, and Test*
// methods which will be run as an xUnit-style test fixture.
func Run(fixture interface{}, t *testing.T) {
t.Parallel()
run(fixture, t, true)
}
// RunSequential, like Run receives an instance of a struct that embeds *Fixture.
// The fixture is run in much the same way, except that it will not be run in
// parallel with other fixtures in the same package.
func RunSequential(fixture interface{}, t *testing.T) {
run(fixture, t, false)
}
func run(fixture interface{}, t *testing.T, parallel bool) {
ensureEmbeddedFixture(fixture, t)
_, filename, _, _ := runtime.Caller(2)
positions := scan.LocateTestCases(filename)
runner := newFixtureRunner(fixture, t, parallel, positions)
runner.ScanFixtureForTestCases()
runner.RunTestCases()
}
func ensureEmbeddedFixture(fixture interface{}, t testingT) {
fixtureType := reflect.TypeOf(fixture)
embedded, _ := fixtureType.Elem().FieldByName("Fixture")
if embedded.Type != embeddedGoodExample.Type {
t.Fatalf("Type (%v) lacks embedded *gunit.Fixture.", fixtureType)
}
}
type goodExample struct{ *Fixture }
var embeddedGoodExample, _ = reflect.TypeOf(new(goodExample)).Elem().FieldByName("Fixture")
|