Loading android/fixture.go +4 −4 Original line number Diff line number Diff line Loading @@ -183,12 +183,12 @@ type FixtureFactory interface { // Create a Fixture. Fixture(t *testing.T, preparers ...FixturePreparer) Fixture // SetErrorHandler creates a new FixtureFactory that will use the supplied error handler to check // the errors (may be 0) reported by the test. // ExtendWithErrorHandler creates a new FixtureFactory that will use the supplied error handler // to check the errors (may be 0) reported by the test. // // The default handlers is FixtureExpectsNoErrors which will fail the go test immediately if any // errors are reported. SetErrorHandler(errorHandler FixtureErrorHandler) FixtureFactory ExtendWithErrorHandler(errorHandler FixtureErrorHandler) FixtureFactory // Run the test, checking any errors reported and returning a TestResult instance. // Loading Loading @@ -640,7 +640,7 @@ func (f *fixtureFactory) Fixture(t *testing.T, preparers ...FixturePreparer) Fix return fixture } func (f *fixtureFactory) SetErrorHandler(errorHandler FixtureErrorHandler) FixtureFactory { func (f *fixtureFactory) ExtendWithErrorHandler(errorHandler FixtureErrorHandler) FixtureFactory { newFactory := &fixtureFactory{} *newFactory = *f newFactory.errorHandler = errorHandler Loading android/visibility_test.go +1 −1 Original line number Diff line number Diff line Loading @@ -1162,7 +1162,7 @@ func TestVisibility(t *testing.T) { // Add additional files to the mock filesystem test.fs.AddToFixture(), ). SetErrorHandler(FixtureExpectsAllErrorsToMatchAPattern(test.expectedErrors)). ExtendWithErrorHandler(FixtureExpectsAllErrorsToMatchAPattern(test.expectedErrors)). RunTest(t) if test.effectiveVisibility != nil { Loading Loading
android/fixture.go +4 −4 Original line number Diff line number Diff line Loading @@ -183,12 +183,12 @@ type FixtureFactory interface { // Create a Fixture. Fixture(t *testing.T, preparers ...FixturePreparer) Fixture // SetErrorHandler creates a new FixtureFactory that will use the supplied error handler to check // the errors (may be 0) reported by the test. // ExtendWithErrorHandler creates a new FixtureFactory that will use the supplied error handler // to check the errors (may be 0) reported by the test. // // The default handlers is FixtureExpectsNoErrors which will fail the go test immediately if any // errors are reported. SetErrorHandler(errorHandler FixtureErrorHandler) FixtureFactory ExtendWithErrorHandler(errorHandler FixtureErrorHandler) FixtureFactory // Run the test, checking any errors reported and returning a TestResult instance. // Loading Loading @@ -640,7 +640,7 @@ func (f *fixtureFactory) Fixture(t *testing.T, preparers ...FixturePreparer) Fix return fixture } func (f *fixtureFactory) SetErrorHandler(errorHandler FixtureErrorHandler) FixtureFactory { func (f *fixtureFactory) ExtendWithErrorHandler(errorHandler FixtureErrorHandler) FixtureFactory { newFactory := &fixtureFactory{} *newFactory = *f newFactory.errorHandler = errorHandler Loading
android/visibility_test.go +1 −1 Original line number Diff line number Diff line Loading @@ -1162,7 +1162,7 @@ func TestVisibility(t *testing.T) { // Add additional files to the mock filesystem test.fs.AddToFixture(), ). SetErrorHandler(FixtureExpectsAllErrorsToMatchAPattern(test.expectedErrors)). ExtendWithErrorHandler(FixtureExpectsAllErrorsToMatchAPattern(test.expectedErrors)). RunTest(t) if test.effectiveVisibility != nil { Loading