github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/scripts/compare-dumps/compare-dumps_test.go (about) 1 package main 2 3 import ( 4 "testing" 5 6 "github.com/nspcc-dev/neo-go/pkg/config" 7 "github.com/nspcc-dev/neo-go/pkg/core/native" 8 "github.com/stretchr/testify/require" 9 ) 10 11 func TestCompatibility(t *testing.T) { 12 cs := native.NewContracts(config.ProtocolConfiguration{}) 13 require.Equal(t, cs.Ledger.ID, int32(ledgerContractID)) 14 }