1 package org.junit.tests.junit3compatibility; 2 3 import junit.framework.Test; 4 import org.junit.runner.RunWith; 5 import org.junit.runners.AllTests; 6 7 @RunWith(AllTests.class) 8 public class OldTests { 9 static public Test suite() { 10 return junit.tests.AllTests.suite(); 11 } 12 }