53
54
// SetupSuite implementation
56
>
}
57
58
// TearDownSuite implementation
60
>
s.TearDownWorkflowStore()
61
>
}
62
63
// SetupTest implementation
65
>
// Have to define our overridden assertions in the test setup. If we did it earlier, s.T() will return nil
66
>
s.Assertions = require.New(s.T())
67
>
s.ProtoAssertions = protorequire.New(s.T())
68
>
69
>
s.ctx, s.cancel = context.WithTimeout(context.Background(), 30*time.Second*debug.TimeoutMultiplier)
70
>
}
71
72
// TearDownTest implementation
74
>
s.cancel()
75
>
}
76
77
// TestGenUUIDs testing uuid.NewString() can generate unique UUID