A way of skipping tests in a GWTTestCase
Is there something simila开发者_运维技巧r to jUnit's @Ignore annotation for the GWTTestCase?
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'
精彩评论