Go to the test method you want to ignore
Before the @Test annotation, enter @Ignore
optional: You can add description why are you ignoring this test method, something like: @Ignore ("ignoring this test case for now")
a sample method would be:
@Ignore ("not going to test this m...