HomeSort by relevance Sort by last modified time
    Searched refs:assertSame (Results 151 - 175 of 496) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ConsoleHandlerTest.java 89 assertSame(h.getLevel(), Level.INFO);
92 assertSame(h.getEncoding(), null);
114 assertSame(h.getLevel(), Level.parse("FINE"));
138 assertSame(h.getLevel(), Level.INFO);
259 assertSame(r, CallVerificationStack.getInstance().pop());
279 assertSame(r, CallVerificationStack.getInstance().pop());
291 assertSame(r, CallVerificationStack.getInstance().pop());
362 assertSame(h.getLevel(), Level.FINE);
393 assertSame(r, CallVerificationStack.getInstance().pop());
411 // assertSame(r, DelegationParameterStack.getInstance().pop())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/accessibilityservice/
InterrogationActivityTest.java 409 assertSame(button.getContentDescription(), source.getContentDescription());
412 assertSame(button.isFocusable(), source.isFocusable());
413 assertSame(button.isClickable(), source.isClickable());
414 assertSame(button.isEnabled(), source.isEnabled());
416 assertSame(button.isLongClickable(), source.isLongClickable());
417 assertSame(button.isPassword(), source.isPassword());
418 assertSame(button.isSelected(), source.isSelected());
419 assertSame(button.isCheckable(), source.isCheckable());
420 assertSame(button.isChecked(), source.isChecked());
  /cts/tools/signature-tools/test/signature/converter/
ConvertEnumTest.java 21 import static org.junit.Assert.assertSame;
79 // assertSame(c, enumConstant.getType());
108 assertSame(c, ((IClassReference)field.getType()).getClassDefinition());
142 assertSame(c, ((IClassReference)((IArrayType)values.getReturnType()).getComponentType()).getClassDefinition());
152 assertSame(c, ((IClassReference)valueOf.getReturnType()).getClassDefinition());
185 assertSame(c, ((IClassReference)((IArrayType)values.getReturnType()).getComponentType()).getClassDefinition());
ConvertClassTest.java 21 import static org.junit.Assert.assertSame;
233 assertSame(variableS, boundT.getTypeVariableDefinition());
273 assertSame(sigInterface, interfaze.getClassDefinition());
297 assertSame(sigInterface, interfaze.getRawType().getClassDefinition());
320 assertSame(sigClass, classTypeVar.getGenericDeclaration());
338 assertSame(sigInterface, interfaze.getRawType().getClassDefinition());
343 assertSame(sigClass, argument.getTypeVariableDefinition().getGenericDeclaration());
444 assertSame(sigClass, paramType.getGenericDeclaration());
457 assertSame(SigPrimitiveType.VOID_TYPE, method.getReturnType());
499 assertSame(((IClassReference)((IArrayType)fields.get("a").getType()).getComponentType()).getClassDefinition() (…)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ControlTest.java 141 assertSame(control, Control.getControl(FORMAT_DEFAULT));
142 assertSame(controlC, Control.getControl(FORMAT_CLASS));
143 assertSame(controlP, Control.getControl(FORMAT_PROPERTIES));
152 assertSame(controlC, Control.getControl(list));
155 assertSame(control, Control.getControl(list));
202 assertSame(control, Control.getNoFallbackControl(FORMAT_DEFAULT));
203 assertSame(controlC, Control.getNoFallbackControl(FORMAT_CLASS));
204 assertSame(controlP, Control.getNoFallbackControl(FORMAT_PROPERTIES));
236 assertSame(controlC, Control.getNoFallbackControl(list));
239 assertSame(control, Control.getNoFallbackControl(list))
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/spi/
AbstractSelectableChannelTest.java 78 assertSame(SelectorProvider.provider(), provider);
118 assertSame(sc, acceptKey.channel());
246 assertSame(sc.keyFor(acceptSelector), acceptKeyObjNull);
247 assertSame(acceptKeyObjNull, acceptKey);
250 assertSame(sc.keyFor(acceptSelectorOther), acceptKeyOther);
  /cts/tests/tests/app/src/android/app/cts/
Instrumentation_ActivityMonitorTest.java 107 assertSame(activity, lastActivity);
124 assertSame(result, am.getResult());
128 assertSame(which, am.getFilter());
PendingIntent_CanceledExceptionTest.java 68 assertSame(ex, e.getCause());
  /cts/tests/tests/widget/src/android/widget/cts/
ViewAnimatorTest.java 109 assertSame(expected, mViewAnimator.getInAnimation());
355 assertSame(v, mViewAnimator.getCurrentView());
419 assertSame(expected, mViewAnimator.getOutAnimation());
484 assertSame(v1, mViewAnimator.getChildAt(0));
485 assertSame(v2, mViewAnimator.getChildAt(1));
486 assertSame(v3, mViewAnimator.getChildAt(2));
490 assertSame(v1, mViewAnimator.getChildAt(0));
491 assertSame(v2, mViewAnimator.getChildAt(1));
495 assertSame(v1, mViewAnimator.getChildAt(0));
506 assertSame(v3, mViewAnimator.getChildAt(0))
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
SystemScopeTest.java 89 assertSame(aaa, ss.getIdentity(aaa.getName()));
105 assertSame(aaa, ss.getIdentity(kkk));
187 assertSame(ss, nested.getScope());
  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 102 assertSame(mockService.getRequestPrototype(fooDescriptor),
104 assertSame(mockService.getResponsePrototype(fooDescriptor),
106 assertSame(mockService.getRequestPrototype(barDescriptor),
108 assertSame(mockService.getResponsePrototype(barDescriptor),
164 assertSame(fooResponse, stub.foo(mockController, fooRequest));
165 assertSame(barResponse, stub.bar(mockController, barRequest));
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECPrivateKeySpec_ImplTest.java 129 assertSame(params, paramsRet);
156 assertSame(s, sRet);
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ServerHandshakeImplTest.java 127 assertSame(server.parameters.getKeyManager(), sslParameters
129 assertSame(server.parameters.getTrustManager(), sslParameters
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 108 assertSame(new CodeSigner(cpath, null).getSignerCertPath(), cpath);
116 assertSame(new CodeSigner(cpath, ts).getTimestamp(), ts);
SignerTest.java 105 assertSame(IdentityScope.getSystemScope(), s.getScope());
136 assertSame(privateKey, s.getPrivateKey());
AlgorithmParametersTest.java 115 assertSame(enc, params.getEncoded());
151 assertSame(enc, params.getEncoded(strFormatParam));
166 assertSame(enc, params.getEncoded(null));
280 assertSame(myParamSpec, params
348 assertSame(p, ap.getProvider());
365 assertSame(spec, paramSpec);
434 assertSame(enc, params);
504 assertSame(enc, params);
505 assertSame(strFormatParam, format);
585 assertSame(str, params.toString())
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLViewTest.java 59 assertSame(x, view.getComponent(0));
60 assertSame(y, view.getComponent(1));
62 assertSame(y, view.getComponent(0));
136 assertSame(a, b.mParent);
155 assertSame(r, a.getGLRoot());
156 assertSame(r, b.getGLRoot());
171 assertSame(r2, a.getGLRoot());
172 assertSame(r2, b.getGLRoot());
  /cts/tests/tests/content/src/android/content/cts/
ContentValuesTest.java 304 assertSame(expected, mContentValues.get("Object"));
308 assertSame(expected, mContentValues.get("Object"));
380 assertSame(expected, mContentValues.getAsString("String"));
384 assertSame(expected, mContentValues.getAsString("String"));
399 assertSame(expected, mContentValues.getAsByte("Byte"));
403 assertSame(expected, mContentValues.getAsByte("Byte"));
531 assertSame(expected, mContentValues.getAsByteArray("byte[]"));
598 assertSame(expected, mContentValues.getStringArrayList("StringArrayList"));
645 assertSame(expected, mContentValues.getAsString("String"));
649 assertSame(expected, mContentValues.getAsString("String"))
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
Spannable_FactoryTest.java 62 assertSame(factory, Spannable.Factory.getInstance());
  /cts/tests/tests/text/src/android/text/method/cts/
HideReturnsTransformationMethodTest.java 65 assertSame(method0, method1);
SingleLineTransformationMethodTest.java 58 assertSame(method0, method1);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
AssertionErrorTest.java 39 assertSame(npe, e.getCause());
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScopeTest.java 97 assertSame(is, is.getIdentity(sc2));
TimestampTest.java 79 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath);
  /libcore/luni/src/test/java/libcore/java/text/
AttributedCharacterIteratorAttributeTest.java 55 assertSame(o, SerializationTester.getDeserializedObject(o));

Completed in 1520 milliseconds

1 2 3 4 5 67 8 91011>>