Russ Cox | ed7c3f3 | 2010-12-07 13:19:01 -0500 | [diff] [blame] | 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 | |
| 5 | package flag |
| 6 | |
| 7 | import "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 Pike | f4fe688 | 2011-05-22 09:22:00 +1000 | [diff] [blame] | 12 | // After calling ResetForTesting, parse errors in flag handling will not |
| 13 | // exit the program. |
Russ Cox | ed7c3f3 | 2010-12-07 13:19:01 -0500 | [diff] [blame] | 14 | func ResetForTesting(usage func()) { |
Rob Pike | 6ac93e2 | 2013-08-08 11:50:58 +1000 | [diff] [blame] | 15 | CommandLine = NewFlagSet(os.Args[0], ContinueOnError) |
Russ Cox | ed7c3f3 | 2010-12-07 13:19:01 -0500 | [diff] [blame] | 16 | Usage = usage |
Russ Cox | ed7c3f3 | 2010-12-07 13:19:01 -0500 | [diff] [blame] | 17 | } |