Skip to content

Commit

Permalink
coverage unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
ssd04 committed Dec 11, 2023
1 parent 6db764c commit 3d6ffbd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions config/gasSchedule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"github.com/mitchellh/mapstructure"
"github.com/multiversx/mx-chain-vm-go/executor"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

type operations struct {
Expand Down Expand Up @@ -172,3 +173,10 @@ func Test_isDynamicGasComputationFuncCorrectlyDefined(t *testing.T) {
assert.True(t, ok)
})
}

func TestMakeGasMap(t *testing.T) {
t.Parallel()

gasMap := MakeGasMapForTests()
require.NotNil(t, gasMap)
}

0 comments on commit 3d6ffbd

Please sign in to comment.