Searched refs:same (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DDigestInputStream2Test.java120 assertEquals("Didn't read the same from each stream", bytesRead1,
124 boolean same = true;
127 same = false;
130 assertTrue("Didn't get the same data", same);
/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMTestInnerClass.java141 public boolean same(Object expected, Object actual) { method in class:DOMTestInnerClass
142 return test.same(expected, actual);
H A DDOMTestFramework.java152 boolean same(Object expected, Object actual); method in interface:DOMTestFramework
H A DJUnitTestCaseAdapter.java203 boolean same = (expected == actual);
205 // if the not the same but both are not null
206 // might still really be the same
208 if(!same) {
362 public boolean same(Object expected, Object actual) { method in class:JUnitTestCaseAdapter
H A DDOMTestCase.java89 "junit-run.jar and junit.jar \n must be in same directory or on classpath.");
206 * Asserts that actual and expected are the same object
776 * @return true if actual and expected are the same object.
778 public boolean same(Object expected, Object actual) { method in class:DOMTestCase
779 return framework.same(expected, actual);

Completed in 3681 milliseconds