In JUnit you can use @Ignore
before methods to tell the test runner to automatically skip those tests. From what I can gather, this is really only a convenient way
FYI, TestNG supports this slightly differently:
You can include a description of why the test is being ignored:
@Test(enabled = false, description = "Disabled until BUG-1234 gets fixed")