In the code below, I'm supressing the warnings because I will be using the assertEquals method which is deprecated. The problem I'm having is that when I run the code below, I get the error:
MyTests.java:3: error: class, interface, or enum expected import org.junit.*;
@SuppressWarnings("deprecation")
import org.junit.*;
import static org.junit.Assert.*;
public class MyTests {
}