blob: 97f607e9d60d16eb6f382dc020a242c33cde634f [file] [log] [blame]
keunyoungefa794f2013-03-26 17:04:22 -07001/*
2 * Copyright (C) 2013 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 com.android.cts.tradefed.result;
17
keunyoungefa794f2013-03-26 17:04:22 -070018import java.util.Map;
keunyoungefa794f2013-03-26 17:04:22 -070019
20/**
Stuart Scotta132af62013-11-07 10:30:32 -080021 * Static utility class for handling Cts Results.
keunyoungefa794f2013-03-26 17:04:22 -070022 */
Stuart Scotta132af62013-11-07 10:30:32 -080023public class CtsReportUtil {
24 private static final String CTS_RESULT_KEY = "CTS_RESULT";
keunyoungefa794f2013-03-26 17:04:22 -070025
26 /**
Stuart Scotta132af62013-11-07 10:30:32 -080027 * Utility method to extract CTS result from test metrics
keunyoungefa794f2013-03-26 17:04:22 -070028 * @param testMetrics
29 * @return result or null if not found
30 */
Stuart Scotta132af62013-11-07 10:30:32 -080031 public static String getCtsResultFromMetrics(Map<String, String> testMetrics) {
keunyoungefa794f2013-03-26 17:04:22 -070032 for (Map.Entry<String, String> entry: testMetrics.entrySet()) {
Stuart Scotta132af62013-11-07 10:30:32 -080033 if (CTS_RESULT_KEY.equals(entry.getKey())) {
keunyoungefa794f2013-03-26 17:04:22 -070034 return entry.getValue();
35 }
36 }
37 return null;
38 }
39}