blob: b646b45e3809af107865f12aabef6712fc633b59 [file] [log] [blame]
Omari Stephens2313d2f2011-08-16 19:00:35 -07001/*
2 * Copyright (C) 2011 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.tradefed.util.brillopad;
17
18import com.android.tradefed.testtype.DeviceTestSuite;
Eric Rowe245332e2012-04-11 12:56:17 -070019import com.android.tradefed.util.brillopad.item.GenericItemTest;
Omari Stephens2313d2f2011-08-16 19:00:35 -070020
21import junit.framework.Test;
22
23/**
24 * A test suite for the Brillopad unit tests.
25 * <p/>
26 * All tests listed here should be self-contained, and should not require any external dependencies.
27 */
28public class BrillopadTests extends DeviceTestSuite {
29
30 public BrillopadTests() {
31 super();
Eric Rowe245332e2012-04-11 12:56:17 -070032
33 addTestSuite(AbstractSectionParserTest.class);
34 addTestSuite(AnrParserTest.class);
Omari Stephens2313d2f2011-08-16 19:00:35 -070035 addTestSuite(BugreportParserTest.class);
Eric Rowe245332e2012-04-11 12:56:17 -070036 addTestSuite(JavaCrashParserTest.class);
37 addTestSuite(LogcatParserTest.class);
38 addTestSuite(MemInfoParserTest.class);
Eric Rowe46972112012-04-11 12:56:53 -070039 addTestSuite(MonkeyLogParserTest.class);
Eric Rowe245332e2012-04-11 12:56:17 -070040 addTestSuite(NativeCrashParserTest.class);
41 addTestSuite(ProcrankParserTest.class);
42 addTestSuite(SystemPropsParserTest.class);
Omari Stephens2313d2f2011-08-16 19:00:35 -070043
44 // item
Eric Rowe245332e2012-04-11 12:56:17 -070045 addTestSuite(GenericItemTest.class);
Omari Stephens2313d2f2011-08-16 19:00:35 -070046 }
47
48 public static Test suite() {
49 return new BrillopadTests();
50 }
51}