(t *testing.T)
| 516 | } |
| 517 | |
| 518 | func TestGetInboundMessageNotFound(t *testing.T) { |
| 519 | pool := testutil.TestDB(t) |
| 520 | store := identity.NewStore(pool) |
| 521 | |
| 522 | _, err := store.GetInboundMessage(context.Background(), "msg_nonexistent") |
| 523 | if err == nil { |
| 524 | t.Error("expected error for non-existent inbound message") |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | func TestGetInboundMessageExpired(t *testing.T) { |
| 529 | pool := testutil.TestDB(t) |
nothing calls this directly
no test coverage detected