Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for assertNotEquals (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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