EMMA Coverage Report (generated Fri Aug 23 16:39:17 PDT 2013)
[all classes][org.chromium.content_shell]

COVERAGE SUMMARY FOR SOURCE FILE [ShellLayoutTestUtils.java]

nameclass, %method, %block, %line, %
ShellLayoutTestUtils.java0%   (0/1)0%   (0/2)0%   (0/7)0%   (0/2)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ShellLayoutTestUtils0%   (0/1)0%   (0/2)0%   (0/7)0%   (0/2)
ShellLayoutTestUtils (): void 0%   (0/1)0%   (0/3)0%   (0/1)
getApplicationFilesDirectory (Context): String 0%   (0/1)0%   (0/4)0%   (0/1)

1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4 
5package org.chromium.content_shell;
6 
7import android.content.Context;
8 
9import org.chromium.base.CalledByNative;
10import org.chromium.base.JNINamespace;
11 
12/**
13 * Utility methods used by content_shell for running Blink's layout tests on Android.
14 */
15@JNINamespace("content")
16class ShellLayoutTestUtils {
17    /**
18     * @return The directory in which the test files, for example FIFOs, can be stored.
19     */
20    @SuppressWarnings("unused")
21    @CalledByNative
22    private static String getApplicationFilesDirectory(Context appContext) {
23        return appContext.getFilesDir().getAbsolutePath();
24    }
25}

[all classes][org.chromium.content_shell]
EMMA 2.0.5312 (C) Vladimir Roubtsov