28
29
// SetupSuite implementation
31
>
}
32
33
// SetupTest implementation
35
>
// Have to define our overridden assertions in the test setup. If we did it earlier, s.T() will return nil
36
>
s.Assertions = require.New(s.T())
37
>
s.ctx, s.cancel = context.WithTimeout(context.Background(), 30*time.Second*debug.TimeoutMultiplier)
38
>
}
39
41
>
s.cancel()
42
>
}
43
44
// TearDownSuite implementation
46
>
s.TearDownWorkflowStore()
47
>
}
48
49
// TestNamespaceReplicationQueue tests namespace replication queue operations