summaryrefslogtreecommitdiff
path: root/tests/fuzz/from-string/uuid.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-05-03 19:41:19 -0300
committerEuAndreh <eu@euandre.org>2025-05-03 19:41:19 -0300
commita6e6896309007fa1013bd51cee125ab8a75f282d (patch)
treef6839c339e9d282138a793488cd8ac23ca356ac6 /tests/fuzz/from-string/uuid.go
parenttests/guuid.go: Use os.Exit over assert when testing panic (diff)
downloaduuid-a6e6896309007fa1013bd51cee125ab8a75f282d.tar.gz
uuid-a6e6896309007fa1013bd51cee125ab8a75f282d.tar.xz
re s/guuid/uuid/g
Diffstat (limited to 'tests/fuzz/from-string/uuid.go')
-rw-r--r--tests/fuzz/from-string/uuid.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/fuzz/from-string/uuid.go b/tests/fuzz/from-string/uuid.go
new file mode 100644
index 0000000..5c3c787
--- /dev/null
+++ b/tests/fuzz/from-string/uuid.go
@@ -0,0 +1,30 @@
+package uuid
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, str string) {
+ FromString(str)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "fn", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}