blob: a25c08f356268b0e6af67966af531fac76a1db11 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.performance.java;
import org.eclipse.persistence.Version;
import org.eclipse.persistence.testing.framework.*;
/**
* This test compares the performance between .class and a static variable.
*/
public class ClassForNameTest extends PerformanceComparisonTestCase {
public static Class<Version> TOPLINK = org.eclipse.persistence.Version.class;
public ClassForNameTest() {
setName("static vs class forName PerformanceComparisonTest");
setDescription("Compares the performance between using class forName, .class and a static variable for the class.");
addStaticClassTest();
addClassForNameTest();
}
/**
* .class.
*/
@Override
public void test() throws Exception {
TOPLINK.getName();
}
/**
* Static.
*/
public void addStaticClassTest() {
PerformanceComparisonTestCase test = new PerformanceComparisonTestCase() {
@Override
public void test() {
org.eclipse.persistence.Version.class.getName();
}
};
test.setName(".classTest");
addTest(test);
}
/**
* Class.forName.
*/
public void addClassForNameTest() {
PerformanceComparisonTestCase test = new PerformanceComparisonTestCase() {
@Override
public void test() throws Exception {
Class.forName("org.eclipse.persistence.Version").getName();
}
};
test.setName("ClassForNameTest");
test.setAllowableDecrease(-90);
addTest(test);
}
}