(t *testing.T)
| 66 | } |
| 67 | |
| 68 | func TestSQLiteStore_FindByUUID_NotFound(t *testing.T) { |
| 69 | db := setupTestDB(t) |
| 70 | store := storage.NewSQLiteStore(db) |
| 71 | |
| 72 | found, err := store.FindByUUID(context.Background(), "nonexistent") |
| 73 | if err != nil { |
| 74 | t.Fatalf("FindByUUID: %v", err) |
| 75 | } |
| 76 | if found != nil { |
| 77 | t.Errorf("expected nil, got %+v", found) |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | func TestSQLiteStore_FindAll(t *testing.T) { |
| 82 | db := setupTestDB(t) |
nothing calls this directly
no test coverage detected