Scope represents the scope of the lifecycle for a feature.
const (
// System scope for features that are part of the Istio system. System Scope = "System"
// Suite scope for features that will live for the entire test suite. Suite Scope = "Suite"
// Test scope for features that will live only for the length of the current test method. Test Scope = "Test"
)