Home
last modified time | relevance | path

Searched refs:assertNotEquals (Results 1 – 10 of 10) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/
DDOMTestInnerClass.java121 public void assertNotEquals(String assertID, String expected, String actual) { in assertNotEquals() method in DOMTestInnerClass
122 test.assertNotEquals(assertID, expected, actual); in assertNotEquals()
125 public void assertNotEquals(String assertID, int expected, int actual) { in assertNotEquals() method in DOMTestInnerClass
126 test.assertNotEquals(assertID, expected, actual); in assertNotEquals()
129 public void assertNotEquals(String assertID, double expected, double actual) { in assertNotEquals() method in DOMTestInnerClass
130 test.assertNotEquals(assertID, expected, actual); in assertNotEquals()
DDOMTestFramework.java128 void assertNotEquals( in assertNotEquals() method
134 void assertNotEquals( in assertNotEquals() method
140 void assertNotEquals( in assertNotEquals() method
146 void assertNotEquals( in assertNotEquals() method
DDOMTestCase.java586 framework.assertNotEquals(this, assertID, expected.toUpperCase(), in assertNotEqualsAutoCase()
590 framework.assertNotEquals(this, assertID, expected, actual); in assertNotEqualsAutoCase()
603 public void assertNotEquals( in assertNotEquals() method in DOMTestCase
607 framework.assertNotEquals(this, assertID, expected, actual); in assertNotEquals()
620 public void assertNotEquals(String assertID, int expected, int actual) { in assertNotEquals() method in DOMTestCase
621 framework.assertNotEquals(this, assertID, expected, actual); in assertNotEquals()
634 public void assertNotEquals( in assertNotEquals() method in DOMTestCase
638 framework.assertNotEquals(this, assertID, expected, actual); in assertNotEquals()
DJUnitTestCaseAdapter.java342 public void assertNotEquals(DOMTestCase test, String assertID, String expected, String actual) { in assertNotEquals() method in JUnitTestCaseAdapter
346 public void assertNotEquals(DOMTestCase test, String assertID, int expected, int actual) { in assertNotEquals() method in JUnitTestCaseAdapter
350 public void assertNotEquals(DOMTestCase test, String assertID, boolean expected, boolean actual) { in assertNotEquals() method in JUnitTestCaseAdapter
355 public void assertNotEquals(DOMTestCase test, String assertID, double expected, double actual) { in assertNotEquals() method in JUnitTestCaseAdapter
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DGenericReflectionTestsBase.java70 public static void assertNotEquals(Object expected, Object actual) { in assertNotEquals() method in GenericReflectionTestsBase
DGenericMethodsTests.java119 assertNotEquals(typeParameter0, typeParameter1); in testIndependencyOfMethodTypeParameters()
/libcore/luni/src/test/java/libcore/java/lang/reflect/
DOldGenericTypesTest.java84 assertNotEquals(typeVariable, parameterType); in testStaticMethodGenericType()
97 assertNotEquals(typeVariable, parameterType); in testHidingMethodGenericType()
174 assertNotEquals(subTypeVariable, superTypeParameter); in testSimpleInheritance()
DOldGenericReflectionCornerCases.java105 assertNotEquals(firstWildcardArgument, secondWildcardArgument); in testWildcardUnEquality()
162 assertNotEquals(firstWildcardArgument, secondWildcardArgument); in testMultipleBoundedWildcardUnEquality()
/libcore/luni/src/test/java/libcore/java/net/
DAbstractCookiesTest.java734 assertNotEquals(createCookie("theme2", "light", "a.com", "/"), baseCookie); in testCookieEquality()
735 assertNotEquals(createCookie("theme", "light", "b.com", "/"), baseCookie); in testCookieEquality()
736 assertNotEquals(createCookie("theme", "light", "a.com", "/path"), baseCookie); in testCookieEquality()
739 private static void assertNotEquals(HttpCookie one, HttpCookie two) { in assertNotEquals() method in AbstractCookiesTest
/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
DStreamOpFlagsTest.java312 assertNotEquals(c, StreamOpFlag.IS_SHORT_CIRCUIT); in testSpliteratorCharacteristics()