(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func TestAPI(t *testing.T) { |
| 18 | t.Parallel() |
| 19 | blobcachetests.ServiceAPI(t, func(t testing.TB) blobcache.Service { |
| 20 | svc := bclocal.NewTestService(t) |
| 21 | return svc |
| 22 | }) |
| 23 | } |
| 24 | |
| 25 | func TestMultiNode(t *testing.T) { |
| 26 | t.Parallel() |
nothing calls this directly
no test coverage detected