aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/AndroidJUnitLaunchInfo.java
blob: 08702f4e2121e4a8eb0567d8895c8cd98056b368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*
 * Copyright (C) 2009 The Android Open Source Project
 *
 * Licensed under the Eclipse Public License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.eclipse.org/org/documents/epl-v10.php
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.ide.eclipse.adt.internal.launch.junit.runtime;

import com.android.ddmlib.IDevice;
import com.android.ddmlib.testrunner.IRemoteAndroidTestRunner.TestSize;

import org.eclipse.core.resources.IProject;
import org.eclipse.debug.core.ILaunch;

import java.util.Collection;
import java.util.Collections;

/**
 * Contains info about Android JUnit launch
 */
public class AndroidJUnitLaunchInfo {
    private final IProject mProject;
    private final String mAppPackage;
    private final String mRunner;

    private boolean mDebugMode = false;
    private Collection<IDevice> mDevices = Collections.EMPTY_LIST;
    private String mTestPackage = null;
    private String mTestClass = null;
    private String mTestMethod = null;
    private ILaunch mLaunch = null;
    private TestSize mTestSize = null;

    public AndroidJUnitLaunchInfo(IProject project, String appPackage, String runner) {
        mProject = project;
        mAppPackage = appPackage;
        mRunner = runner;
    }

    public IProject getProject() {
        return mProject;
    }

    public String getAppPackage() {
        return mAppPackage;
    }

    public String getRunner() {
        return mRunner;
    }

    public boolean isDebugMode() {
        return mDebugMode;
    }

    public void setDebugMode(boolean debugMode) {
        mDebugMode = debugMode;
    }

    public TestSize getTestSize() {
        return mTestSize;
    }

    public void setTestSize(TestSize size) {
        mTestSize = size;
    }

    public Collection<IDevice> getDevices() {
        return mDevices;
    }

    public void setDevices(Collection<IDevice> devices) {
        mDevices = devices;
    }

    /**
     * Specify to run all tests within given package.
     *
     * @param testPackage fully qualified java package
     */
    public void setTestPackage(String testPackage) {
        mTestPackage = testPackage;
    }

    /**
     * Return the package of tests to run.
     *
     * @return fully qualified java package. <code>null</code> if not specified.
     */
    public String getTestPackage() {
        return mTestPackage;
    }

    /**
     * Sets the test class to run.
     *
     * @param testClass fully qualfied test class to run
     *    Expected format: x.y.x.testclass
     */
    public void setTestClass(String testClass) {
        mTestClass = testClass;
    }

    /**
     * Returns the test class to run.
     *
     * @return fully qualfied test class to run.
     *   <code>null</code> if not specified.
     */
    public String getTestClass() {
        return mTestClass;
    }

    /**
     * Sets the test method to run. testClass must also be set.
     *
     * @param testMethod test method to run
     */
    public void setTestMethod(String testMethod) {
        mTestMethod = testMethod;
    }

    /**
     * Returns the test method to run.
     *
     * @return test method to run. <code>null</code> if not specified.
     */
    public String getTestMethod() {
        return mTestMethod;
    }

    public ILaunch getLaunch() {
        return mLaunch;
    }

    public void setLaunch(ILaunch launch) {
        mLaunch = launch;
    }
}