blob: 01d392dac7b5b0d95cb8ac3a2f301917fbc55bb5 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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 */
16
17package android.test;
18
19import android.util.Log;
20import junit.framework.Test;
21import junit.framework.TestListener;
22
23import java.util.HashSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import java.util.Set;
25
26/**
27 * Prints the test progress to stdout. Android includes a default
28 * implementation and calls these methods to print out test progress; you
29 * probably will not need to create or extend this class or call its methods manually.
30 * See the full {@link android.test} package description for information about
31 * getting test results.
Stephan Linznerb51617f2016-01-27 18:09:50 -080032 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033 * {@hide} Not needed for 1.0 SDK.
34 */
Stephan Linznerb51617f2016-01-27 18:09:50 -080035@Deprecated
Paul Duffinb3f83ae2017-06-22 14:17:29 +010036class TestPrinter implements TestListener {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037
38 private String mTag;
39 private boolean mOnlyFailures;
40 private Set<String> mFailedTests = new HashSet<String>();
41
42
Paul Duffinb3f83ae2017-06-22 14:17:29 +010043 TestPrinter(String tag, boolean onlyFailures) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 mTag = tag;
45 mOnlyFailures = onlyFailures;
46 }
47
Paul Duffinb3f83ae2017-06-22 14:17:29 +010048 private void started(String className) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049 if (!mOnlyFailures) {
50 Log.i(mTag, "started: " + className);
51 }
52 }
53
Paul Duffinb3f83ae2017-06-22 14:17:29 +010054 private void finished(String className) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055 if (!mOnlyFailures) {
56 Log.i(mTag, "finished: " + className);
57 }
58 }
59
Paul Duffinb3f83ae2017-06-22 14:17:29 +010060 private void passed(String className) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 if (!mOnlyFailures) {
62 Log.i(mTag, "passed: " + className);
63 }
64 }
65
Paul Duffinb3f83ae2017-06-22 14:17:29 +010066 private void failed(String className, Throwable exception) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067 Log.i(mTag, "failed: " + className);
68 Log.i(mTag, "----- begin exception -----");
69 Log.i(mTag, "", exception);
70 Log.i(mTag, "----- end exception -----");
71 }
72
73 private void failed(Test test, Throwable t) {
74 mFailedTests.add(test.toString());
75 failed(test.toString(), t);
76 }
Stephan Linznerb51617f2016-01-27 18:09:50 -080077
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078 public void addError(Test test, Throwable t) {
79 failed(test, t);
80 }
81
82 public void addFailure(Test test, junit.framework.AssertionFailedError t) {
83 failed(test, t);
84 }
85
86 public void endTest(Test test) {
87 finished(test.toString());
88 if (!mFailedTests.contains(test.toString())) {
89 passed(test.toString());
90 }
91 mFailedTests.remove(test.toString());
92 }
93
94 public void startTest(Test test) {
95 started(test.toString());
96 }
97}