entities_test.go 416 B

123456789101112131415161718
  1. package entities
  2. import (
  3. // "github.com/stretchr/testify/assert"
  4. "testing"
  5. )
  6. func TestLoadObjectPerLineJsonFile(t *testing.T) {
  7. /*
  8. filename := "testdata/object-per-line.json"
  9. assert.Equal(t, "", GetEntity("testrow", "0"), "Value should match expected value")
  10. loadEntityFileJson(filename, "testrow")
  11. assert.Equal(t, "1234567890", GetEntity("testrow", "0"), "Value should match expected value")
  12. */
  13. }