Hi.
In a table driven test suite I want to skip some tests.
Currently I'm doing:
for _, test := range lexTests {
// We can not use t.Skip
continue
}
...
}
The skipped test entry has a comment explaining why it is skipped.
Is this the best way to handle the problem?
Thanks Manlio