This commit is contained in:
5684185+vsariola@users.noreply.github.com
2025-07-07 13:58:02 +03:00
parent 5a11b290a2
commit 0d21afa2c1
7 changed files with 92 additions and 40 deletions

View File

@ -239,7 +239,7 @@ func (s *modelFuzzState) IterateTable(name string, table tracker.Table, yield fu
table.Fill(seed % 16)
})
yield(name+".Add", func(p string, t *testing.T) {
table.Add(seed % 16)
table.Add((seed>>1)%16, seed%2 == 0)
})
}