--- Helpers ---
(t *testing.T, svc types.ServiceConfig)
| 907 | // --- Helpers --- |
| 908 | |
| 909 | func mustServiceHash(t *testing.T, svc types.ServiceConfig) string { |
| 910 | t.Helper() |
| 911 | h, err := ServiceHash(svc) |
| 912 | assert.NilError(t, err) |
| 913 | return h |
| 914 | } |
| 915 | |
| 916 | // mustResolvedServiceHash mirrors what the executor persists at create time: |
| 917 | // the service references are resolved before hashing. Use it to seed |
no test coverage detected