01: package org.jasig.portal.utils;
02:
03: import java.util.ArrayList;
04: import java.util.List;
05:
06: import junit.framework.TestCase;
07:
08: /**
09: * uPortal 2.6 requires JDK 1.5 or later. This JUnit test case requires
10: * JDK 1.5 and later and so documents in code this requirement.
11: * @author apetro@unicon.net
12: */
13: public class RequiresJDK15Test extends TestCase {
14:
15: public void testRequiresJdk15() {
16: List<String> list = new ArrayList<String>();
17: }
18:
19: }
|