Seitaridis
Seitaridis

Reputation: 4529

A way of skipping tests in a GWTTestCase

Is there something similar to jUnit's @Ignore annotation for the GWTTestCase?

Upvotes: 1

Views: 354

Answers (1)

qwerty
qwerty

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

Related Questions