OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TestMethod
(Results
1 - 25
of
26
) sorted by null
1
2
/external/junit/src/org/junit/internal/runners/
TestMethod.java
20
public class
TestMethod
{
24
public
TestMethod
(Method method, TestClass testClass) {
/frameworks/base/test-runner/src/android/test/suitebuilder/
TestMethod.java
30
public class
TestMethod
{
36
public
TestMethod
(Method method, Class<? extends TestCase> enclosingClass) {
40
public
TestMethod
(String methodName, Class<? extends TestCase> enclosingClass) {
46
public
TestMethod
(TestCase testCase) {
119
TestMethod
that = (
TestMethod
) o;
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
InvocationTargetExceptionTest.java
31
static class
TestMethod
{
32
public
TestMethod
() {
134
Method mth =
TestMethod
.class.getDeclaredMethod(
137
Object ret = mth.invoke(new
TestMethod
(), new Object[0]);
156
Method mth =
TestMethod
.class.getDeclaredMethod(
159
Object ret = mth.invoke(new
TestMethod
(), new Object[0]);
177
Method mth =
TestMethod
.class.getDeclaredMethod(
180
Object ret = mth.invoke(new
TestMethod
(), new Object[0]);
198
Method mth =
TestMethod
.class.getDeclaredMethod(
201
Object ret = mth.invoke(new
TestMethod
(), new Object[0])
[
all
...]
MethodTest.java
35
static class
TestMethod
{
36
public
TestMethod
() {
161
class TestMethodSub extends
TestMethod
{
201
m1 =
TestMethod
.class.getMethod("invokeInstanceTest", new Class[0]);
210
m1 =
TestMethod
.class.getMethod("invokeStaticTest", new Class[0]);
224
Method m1 =
TestMethod
.class.getMethod("invokeInstanceTest", new Class[0]);
225
Method m2 =
TestMethod
.class.getMethod("invokeInstanceTest", (Class[]) null);
234
Method m1 =
TestMethod
.class.getDeclaredMethod("invokeInstanceTest", new Class[0]);
235
Method m2 =
TestMethod
.class.getDeclaredMethod("invokeInstanceTest", (Class[]) null);
249
mths =
TestMethod
.class.getDeclaredMethods()
[
all
...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
InvocationTargetExceptionTest.java
29
static class
TestMethod
{
30
public
TestMethod
() {
117
Method mth =
TestMethod
.class.getDeclaredMethod(
120
Object ret = mth.invoke(new
TestMethod
(), new Object[0]);
139
Method mth =
TestMethod
.class.getDeclaredMethod(
142
Object ret = mth.invoke(new
TestMethod
(), new Object[0]);
160
Method mth =
TestMethod
.class.getDeclaredMethod(
163
Object ret = mth.invoke(new
TestMethod
(), new Object[0]);
MethodTest.java
26
static class
TestMethod
{
27
public
TestMethod
() {
130
class TestMethodSub extends
TestMethod
{
144
m1 =
TestMethod
.class.getMethod("invokeInstanceTest", new Class[0]);
150
m1 =
TestMethod
.class.getMethod("invokeStaticTest", new Class[0]);
166
mths =
TestMethod
.class.getDeclaredMethods();
169
.getDeclaringClass().equals(
TestMethod
.class));
179
Method mth =
TestMethod
.class.getMethod("voidMethod", new Class[0]);
185
mth =
TestMethod
.class.getMethod("intMethod", new Class[0]);
197
Class cl =
TestMethod
.class
[
all
...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
unit_test_suite_impl.hpp
237
typedef void (UserTestCase::*
TestMethod
)();
239
user_tc_method_invoker( shared_ptr<InstanceType> inst,
TestMethod
test_method )
245
TestMethod
m_test_method;
/cts/tools/utils/
DescriptionGenerator.java
413
void appendTestCases(Node elem, Collection<
TestMethod
> cases) {
418
for (
TestMethod
caze : cases) {
496
Collection<
TestMethod
> mCases;
504
TestClass(String name, Collection<
TestMethod
> cases) {
520
* Get all the
TestMethod
from a ClassDoc, including inherited methods.
523
* @return A collection of
TestMethod
.
525
Collection<
TestMethod
> getTestMethods(ExpectationStore expectationStore, ClassDoc clazz) {
528
ArrayList<
TestMethod
> cases = new ArrayList<
TestMethod
>();
560
cases.add(new
TestMethod
(name, method.commentText(), controller, knownFailure
[
all
...]
/external/robolectric/lib/main/
junit-dep-4.8.2.jar
/prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/12/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/14/
android.jar
/prebuilts/sdk/15/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/17/
android.jar
/prebuilts/sdk/18/
android.jar
/prebuilts/sdk/19/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/6/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/9/
android.jar
Completed in 4025 milliseconds
1
2