(t *testing.T)
| 116 | } |
| 117 | |
| 118 | func TestOlric_StartAndShutdown(t *testing.T) { |
| 119 | cluster := newTestOlricCluster(t) |
| 120 | db := cluster.addMember(t) |
| 121 | |
| 122 | err := db.Shutdown(context.Background()) |
| 123 | require.NoError(t, err) |
| 124 | } |
| 125 | |
| 126 | func TestOlricCluster_StartAndShutdown(t *testing.T) { |
| 127 | cluster := newTestOlricCluster(t) |
nothing calls this directly
no test coverage detected