Reputation: 4529
Is there something similar to jUnit's @Ignore annotation for the GWTTestCase?
Upvotes: 1
Views: 354
Reputation: 3869
I haven't used this API, but it looks like GWTTestCase extends junit.framework.TestCase
.
Hence annotations wont be available and you'll have to manually rename your testXX methods to something that doesn't start with 'test'
Upvotes: 3