blob: 2bf04180fa79f14b8a58a66701da7502087cc847 [file] [log] [blame]
Aurimas Liutikas88c7ff12023-08-10 12:42:26 -07001/*
2 * Copyright (C) 2022 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package android.libcore.regression;
17
18import android.perftests.utils.BenchmarkState;
19import android.perftests.utils.PerfStatusReporter;
20import android.test.suitebuilder.annotation.LargeTest;
21
22import androidx.test.runner.AndroidJUnit4;
23
24import org.junit.Rule;
25import org.junit.Test;
26import org.junit.runner.RunWith;
27
28import java.text.DecimalFormatSymbols;
29import java.util.Locale;
30
31@RunWith(AndroidJUnit4.class)
32@LargeTest
33public class DecimalFormatSymbolsPerfTest {
34 @Rule public PerfStatusReporter mPerfStatusReporter = new PerfStatusReporter();
35
36 private static Locale sLocale = Locale.getDefault(Locale.Category.FORMAT);
37
38 @Test
39 public void time_instantiation() {
40 BenchmarkState state = mPerfStatusReporter.getBenchmarkState();
41 while (state.keepRunning()) {
42 new DecimalFormatSymbols(sLocale);
43 }
44 }
45}