blob: 56cda58b36c4738af61b160643d926f6d4cdee15 [file] [log] [blame]
Russ Coxed7c3f32010-12-07 13:19:01 -05001// 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
5package flag
6
7import "os"
8
9// Additional routines compiled into the package only during testing.
10
11// ResetForTesting clears all flag state and sets the usage function as directed.
Rob Pikef4fe6882011-05-22 09:22:00 +100012// After calling ResetForTesting, parse errors in flag handling will not
13// exit the program.
Russ Coxed7c3f32010-12-07 13:19:01 -050014func ResetForTesting(usage func()) {
Rob Pike6ac93e22013-08-08 11:50:58 +100015 CommandLine = NewFlagSet(os.Args[0], ContinueOnError)
Russ Coxed7c3f32010-12-07 13:19:01 -050016 Usage = usage
Russ Coxed7c3f32010-12-07 13:19:01 -050017}