Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for assertNotEquals (0.21 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. src/test/java/jcifs/tests/DfsTest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.tests;
    
    
    import static org.junit.Assert.assertEquals;
    import static org.junit.Assert.assertNotEquals;
    import static org.junit.Assert.assertNotNull;
    import static org.junit.Assert.assertNull;
    import static org.junit.Assert.assertTrue;
    
    import java.net.URI;
    import java.net.URISyntaxException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 13.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/FileAttributesTest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.tests;
    
    
    import static org.junit.Assert.assertEquals;
    import static org.junit.Assert.assertNotEquals;
    import static org.junit.Assert.assertNotNull;
    import static org.junit.Assert.assertTrue;
    
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.UnknownHostException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top