/******************************************************************************* * Copyright (c) 2000, 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.core.tests.compiler.regression; import java.util.Map; import junit.framework.Test; import org.eclipse.jdt.internal.compiler.impl.CompilerOptions; public class AbstractComparableTest extends AbstractRegressionTest { public static Test buildComparableTestSuite(Class<? extends Test> evaluationTestClass) { Test suite = buildMinimalComplianceTestSuite(evaluationTestClass, F_1_5); TESTS_COUNTERS.put(evaluationTestClass.getName(), new Integer(suite.countTestCases())); return suite; } public AbstractComparableTest(String name) { super(name); } /* * Toggle compiler in mode -1.5 */ protected Map<String, String> getCompilerOptions() { Map<String, String> options = super.getCompilerOptions(); options.put(CompilerOptions.OPTION_ReportFinalParameterBound, CompilerOptions.WARNING); options.put(CompilerOptions.OPTION_ReportUnnecessaryTypeCheck, CompilerOptions.WARNING); options.put(CompilerOptions.OPTION_ReportMissingOverrideAnnotation, CompilerOptions.WARNING); options.put(CompilerOptions.OPTION_ReportMissingDeprecatedAnnotation, CompilerOptions.WARNING); options.put(CompilerOptions.OPTION_ReportIncompleteEnumSwitch, CompilerOptions.WARNING); options.put(CompilerOptions.OPTION_ReportRawTypeReference, CompilerOptions.WARNING); return options; } }