Hey Darsh, you can skip a @Test method from execution by using throw new SkipException(). Once SkipException() thrown, remaining part of that test method will not be executed and control will goes directly to next test method execution:
throw new SkipException("Skipping - This is not ready for testing ");