4
0

entities_test.go 203 B

123456789101112
  1. package stringvariables
  2. import (
  3. "github.com/stretchr/testify/assert"
  4. "testing"
  5. )
  6. func TestEntityCount(t *testing.T) {
  7. SetEntityCount("waffles", 3)
  8. assert.Equal(t, 3, GetEntityCount("waffles"))
  9. }