Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for assertNotEquals (0.29 sec)

  1. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/AbstractVersionTest.java

                assertNotEquals(v1, v2, "expected " + v1 + " != " + v2);
                assertNotEquals(v2, v1, "expected " + v2 + " != " + v1);
            } else if (expected < 0) {
                assertEquals(-1, Integer.signum(v1.compareTo(v2)), "expected " + v1 + " < " + v2);
                assertEquals(1, Integer.signum(v2.compareTo(v1)), "expected " + v2 + " > " + v1);
                assertNotEquals(v1, v2, "expected " + v1 + " != " + v2);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java

            DefaultToolchain tc1 = new DefaultJavaToolChain(tm1, null);
            DefaultToolchain tc2 = new DefaultJavaToolChain(tm2, null);
    
            assertEquals(tc1, tc1);
            assertNotEquals(tc1, tc2);
            assertNotEquals(tc2, tc1);
            assertEquals(tc2, tc2);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/SessionReuseTest.kt

    import okhttp3.testing.PlatformRule
    import okhttp3.testing.PlatformVersion
    import okio.ByteString.Companion.toByteString
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Assertions.assertNotEquals
    import org.junit.jupiter.api.Assumptions.assumeTrue
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.junit.jupiter.params.ParameterizedTest
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. maven-di/src/test/java/org/apache/maven/di/impl/InjectorImplTest.java

            assertNotNull(entries.get(1));
            assertInstanceOf(String.class, entries.get(1).getKey());
            assertInstanceOf(InjectMap.MyService.class, entries.get(1).getValue());
            assertNotEquals(entries.get(0).getKey(), entries.get(1).getKey());
            assertNotSame(
                    entries.get(0).getValue().getClass(), entries.get(1).getValue().getClass());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/JSSETest.kt

    import okhttp3.testing.PlatformRule
    import okhttp3.testing.PlatformVersion
    import okio.ByteString.Companion.toByteString
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Assertions.assertNotEquals
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Disabled
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    class JSSETest {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

        /**
         * <p>testEquals.</p>
         */
        @Test
        void testEquals() {
            XmlNodeImpl dom = new XmlNodeImpl("top");
    
            assertEquals(dom, dom);
            assertNotEquals(dom, null);
            assertNotEquals(dom, new XmlNodeImpl(""));
        }
    
        /**
         * <p>testEqualsIsNullSafe.</p>
         */
        @Test
        void testEqualsIsNullSafe() throws XMLStreamException, IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

    import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
    import static org.hamcrest.MatcherAssert.assertThat;
    import static org.junit.Assert.assertEquals;
    import static org.junit.Assert.assertNotEquals;
    import static org.junit.Assert.assertTrue;
    import static org.junit.Assume.assumeTrue;
    
    public class TestFile extends File {
        private boolean useNativeTools;
        private final File relativeBase;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

    import org.hamcrest.CoreMatchers.allOf
    import org.hamcrest.CoreMatchers.containsString
    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Assert.assertNotEquals
    import org.junit.Test
    import spock.lang.Issue
    
    
    class GradleKotlinDslIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Object); public static void assertEquals(Object, Object); public static void assertNotEquals(String, Object, Object); public static void assertNotEquals(Object, Object); private static void failEquals(String, Object); public static void assertNotEquals(String, long, long); public static void assertNotEquals(long, long); public static void assertNotEquals(String, double, double, double); public static void assertNotEquals(double, double, double); public static void assertNotEquals(float, float, float);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

    import static org.hamcrest.Matchers.startsWith;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertNotEquals;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertNull;
    import static org.junit.jupiter.api.Assertions.assertSame;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
Back to top