mirror of
https://github.com/spf13/viper
synced 2024-12-22 11:37:02 +00:00
Added fuzzer for Get()
This commit is contained in:
parent
13df721090
commit
59b7b4c50d
1 changed files with 6 additions and 0 deletions
6
fuzz.go
Normal file
6
fuzz.go
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
package viper
|
||||||
|
|
||||||
|
func FuzzGet(data []byte) int {
|
||||||
|
_ = Get(string(data))
|
||||||
|
return 1
|
||||||
|
}
|
Loading…
Reference in a new issue