blob: 3253449013dfe12d4d8bb9eb90bb400d1343cfa1 [file] [log] [blame]
/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.jack.frontend;
import com.android.jack.TestTools;
import org.junit.Before;
import org.junit.Test;
import java.io.File;
public class ConstantReuseTest {
private static String CLASS_BINARY_NAME = "com/android/jack/constant/test002/jack/ConstantReuse";
private static String CLASS_SIGNATURE = "L" + CLASS_BINARY_NAME + ";";
private static File TEST_FILE = TestTools.getJackTestFromBinaryName(CLASS_BINARY_NAME);
@Before
public void setUp() throws Exception {
ConstantReuseTest.class.getClassLoader().setDefaultAssertionStatus(true);
}
@Test
public void intConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"intConstantReuse()V");
}
@Test
public void byteConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"byteConstantReuse()V");
}
@Test
public void shortConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"shortConstantReuse()V");
}
@Test
public void charConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"charConstantReuse()V");
}
@Test
public void floatConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"floatConstantReuse()V");
}
@Test
public void longConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"longConstantReuse()V");
}
@Test
public void doubleConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"doubleConstantReuse()V");
}
@Test
public void booleanConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"booleanConstantReuse()V");
}
@Test
public void nullConstantReuse() throws Exception {
TestTools.getJMethodWithRejectAllFilter(
TEST_FILE,
CLASS_SIGNATURE,
"nullConstantReuse()V");
}
}