I have a project in Java with JUnit tests in Scala. Each test class is annotated with @Test:
import org.junit.Test
@Test
class SomeTest {
...
}
JUnit API says that @Test is a method annotation. However, when I delete the @Test annotations from the classes while keeping method annotations intact, many tests are not executed when running from Eclipse.
So what is the purpose of @Test annotation applied to a class and why are some of the tests not run when these annotations removed?