mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 17:44:29 +00:00
2e4947bbfb
* refactor test * add a fast fixed examples test for the main suite * split slow test for the integration suite
29 lines
510 B
Go
29 lines
510 B
Go
//go:build integration
|
|
// +build integration
|
|
|
|
package discover
|
|
|
|
import (
|
|
"math/rand"
|
|
"testing"
|
|
"testing/quick"
|
|
"time"
|
|
)
|
|
|
|
func TestTable_findNodeByID_quickCheck(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
config := quick.Config{
|
|
MaxCount: 1000,
|
|
Rand: rand.New(rand.NewSource(time.Now().Unix())),
|
|
}
|
|
|
|
test := func(nodesCount uint16, resultsCount byte) bool {
|
|
return testTableFindNodeByIDRun(t, nodesCount, resultsCount, config.Rand)
|
|
}
|
|
|
|
if err := quick.Check(test, &config); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|