blob: a77892c4cb3d1e5a513c75062ed123f676f7e4de [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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 Unicode9Test extends AbstractRegressionTest {
public Unicode9Test(String name) {
super(name);
}
public static Test suite() {
return buildMinimalComplianceTestSuite(testClass(), F_9);
}
public void test1() {
Map<String, String> options = getCompilerOptions();
options.put(CompilerOptions.OPTION_Compliance, CompilerOptions.VERSION_9);
this.runConformTest(
new String[] {
"X.java",
"public class X {\n" +
" public int a\u20BE; // new unicode character in unicode 8.0 \n" +
"}",
},
"",
options);
}
public static Class<Unicode9Test> testClass() {
return Unicode9Test.class;
}
}