ScenarioBlock.getTags

Get tags of scenario block

class ScenarioBlock
final
string[]
getTags
(
)

Return Value

Type: string[]

return tags string[] of scenario block

Examples

auto block = new ScenarioBlock({}, "Test", ["test"]);
assert(block.getTags() == ["test"]);

Meta