ConnectivityManagerStressTestRunner.java revision 6026d52710d7a6195a33885020d29aa1330fa855
1/*
2 * Copyright (C) 2010, 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 com.android.connectivitymanagertest;
18
19import android.os.Bundle;
20import android.test.InstrumentationTestRunner;
21import android.test.InstrumentationTestSuite;
22import android.util.Log;
23import com.android.connectivitymanagertest.stress.WifiApStress;
24
25import junit.framework.TestSuite;
26
27/**
28 * Instrumentation Test Runner for all stress tests
29 *
30 * To run the stress tests:
31 *
32 * adb shell am instrument -e stressnum <stress times> \
33 *     -w com.android.connectivitymanagertest/.ConnectivityManagerStressTestRunner
34 */
35
36public class ConnectivityManagerStressTestRunner extends InstrumentationTestRunner {
37    @Override
38    public TestSuite getAllTests() {
39        TestSuite suite = new InstrumentationTestSuite(this);
40        suite.addTestSuite(WifiApStress.class);
41        return suite;
42    }
43
44    @Override
45    public ClassLoader getLoader() {
46        return ConnectivityManagerTestRunner.class.getClassLoader();
47    }
48
49    @Override
50    public void onCreate(Bundle icicle) {
51        super.onCreate(icicle);
52        String stressValue = (String) icicle.get("stressnum");
53        if (stressValue != null) {
54            int iteration = Integer.parseInt(stressValue);
55            if (iteration > 0) {
56                numStress = iteration;
57            }
58        }
59    }
60
61    public int numStress = 100;
62}
63