export_test.go 544 B

123456789101112131415161718
  1. // Copyright 2010 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package flag
  5. import "os"
  6. // Additional routines compiled into the package only during testing.
  7. // ResetForTesting clears all flag state and sets the usage function as directed.
  8. // After calling ResetForTesting, parse errors in flag handling will not
  9. // exit the program.
  10. func ResetForTesting(usage func()) {
  11. CommandLine = NewFlagSet(os.Args[0], ContinueOnError)
  12. Usage = usage
  13. }