(t *testing.T)
| 4342 | } |
| 4343 | |
| 4344 | func TestServerUUID(t *testing.T) { |
| 4345 | db, ctx := setupTestDB(t) |
| 4346 | defer db.Close(ctx) |
| 4347 | |
| 4348 | if base.TestUseCouchbaseServer() { |
| 4349 | require.Len(t, db.ServerUUID, 32) // no dashes in UUID |
| 4350 | } else { |
| 4351 | require.Len(t, db.ServerUUID, 0) // no dashes in UUID |
| 4352 | } |
| 4353 | } |
| 4354 | |
| 4355 | func waitAndAssertConditionWithOptions(t *testing.T, fn func() bool, retryCount, msSleepTime int, failureMsgAndArgs ...interface{}) { |
| 4356 | for i := 0; i <= retryCount; i++ { |
nothing calls this directly
no test coverage detected