19 lines
416 B
Go
19 lines
416 B
Go
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")
|
|
*/
|
|
}
|