(idx uint64, data string)
| 12 | return ds |
| 13 | } |
| 14 | func createRaftLog(idx uint64, data string) *raft.Log { |
| 15 | return &raft.Log{ |
| 16 | Data: []byte(data), |
| 17 | Index: idx, |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func TestInMemStore_GetLog(t *testing.T) { |
| 22 | ds := testMemoryDatastore() |
no outgoing calls
no test coverage detected