Reputation: 6701
I am trying to ignore a unit test, I have a test class similar to
@Test
public void testSomething() throws Exception {
testcode
}
When I put @Ignore
above @Test
the execution fails with message
error: cannot find symbol
What is the correct way to ignore a test?
Upvotes: 4
Views: 5166
Reputation: 3530
I met this problem because of my typo "Ingore" in the import statement :)
Upvotes: 1