1 2 3 4 5 6 7 8 9
package todolist import "testing" func TestFileStore(t *testing.T) { store := &FileStore{FileLocation: "todos.json"} store.Load() store.Data[0] }