Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for assertNotEquals (0.16 sec)

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