(uuid, typ, project string)
| 28 | } |
| 29 | |
| 30 | func makeEvent(uuid, typ, project string) event.Event { |
| 31 | return event.Event{ |
| 32 | UUID: uuid, |
| 33 | Type: typ, |
| 34 | Payload: json.RawMessage(`{"test":true}`), |
| 35 | Timestamp: 1700000000.123456, |
| 36 | Project: project, |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | func TestSQLiteStore_Store_and_FindByUUID(t *testing.T) { |
| 41 | db := setupTestDB(t) |
no outgoing calls
no test coverage detected