Searched defs:same (Results 1 - 4 of 4) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMTestFramework.java152 boolean same(Object expected, Object actual); method in interface:DOMTestFramework
H A DDOMTestInnerClass.java141 public boolean same(Object expected, Object actual) { method in class:DOMTestInnerClass
142 return test.same(expected, actual);
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 131 milliseconds