Skip to content

Commit

Permalink
updated TestingSuite interface to use TestingT
Browse files Browse the repository at this point in the history
  • Loading branch information
npxcomplete authored and boyan-soubachov committed Jan 29, 2020
1 parent d3e6164 commit dca7be2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions suite/interfaces.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
package suite

import "testing"

// TestingSuite can store and return the current *testing.T context
// generated by 'go test'.
type TestingSuite interface {
T() *testing.T
SetT(*testing.T)
T() TestingT
SetT(TestingT)
}

// SetupAllSuite has a SetupSuite method, which will run before the
Expand Down

0 comments on commit dca7be2

Please sign in to comment.