mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-12 09:05:39 +00:00
13 lines
203 B
Go
13 lines
203 B
Go
package stringvariables
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestEntityCount(t *testing.T) {
|
|
SetEntityCount("waffles", 3)
|
|
|
|
assert.Equal(t, 3, GetEntityCount("waffles"))
|
|
}
|