| 123456789101112131415161718 |
- package entities
- import (
- // "github.com/stretchr/testify/assert"
- "testing"
- )
- func TestLoadObjectPerLineJsonFile(t *testing.T) {
- /*
- filename := "testdata/object-per-line.json"
- assert.Equal(t, "", GetEntity("testrow", "0"), "Value should match expected value")
- loadEntityFileJson(filename, "testrow")
- assert.Equal(t, "1234567890", GetEntity("testrow", "0"), "Value should match expected value")
- */
- }
|