main_test.go 244 B

12345678910111213141516171819
  1. package main
  2. import (
  3. "github.com/stretchr/testify/suite"
  4. )
  5. type MainTestSuite struct {
  6. suite.Suite
  7. oldConf config
  8. }
  9. func (s *MainTestSuite) SetupTest() {
  10. s.oldConf = conf
  11. }
  12. func (s *MainTestSuite) TearDownTest() {
  13. conf = s.oldConf
  14. }