- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 37 for testHashCodeNullSafe (0.08 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/MailingListTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code MailingList}. * */ class MailingListTest { @Test void testHashCodeNullSafe() { new MailingList().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new MailingList().equals(null)); new MailingList().equals(new MailingList());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ActivationFileTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code ActivationFile}. * */ class ActivationFileTest { @Test void testHashCodeNullSafe() { new ActivationFile().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new ActivationFile().equals(null));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ActivationTest.java
import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code Activation}. * */ class ActivationTest { @Test void testHashCodeNullSafe() { new Activation().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Activation().equals(null)); new Activation().equals(new Activation()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/CiManagementTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code CiManagement}. * */ class CiManagementTest { @Test void testHashCodeNullSafe() { new CiManagement().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new CiManagement().equals(null)); new CiManagement().equals(new CiManagement());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/DeploymentRepositoryTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code DeploymentRepository}. * */ class DeploymentRepositoryTest { @Test void testHashCodeNullSafe() { new DeploymentRepository().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new DeploymentRepository().equals(null));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/NotifierTest.java
import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code Notifier}. * */ class NotifierTest { @Test void testHashCodeNullSafe() { new Notifier().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Notifier().equals(null)); new Notifier().equals(new Notifier()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/PluginExecutionTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code PluginExecution}. * */ class PluginExecutionTest { @Test void testHashCodeNullSafe() { new PluginExecution().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new PluginExecution().equals(null));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/PluginManagementTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code PluginManagement}. * */ class PluginManagementTest { @Test void testHashCodeNullSafe() { new PluginManagement().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new PluginManagement().equals(null));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ReportSetTest.java
import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code ReportSet}. * */ class ReportSetTest { @Test void testHashCodeNullSafe() { new ReportSet().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new ReportSet().equals(null)); new ReportSet().equals(new ReportSet()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/RepositoryTest.java
import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code Repository}. * */ class RepositoryTest { @Test void testHashCodeNullSafe() { new Repository().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Repository().equals(null)); new Repository().equals(new Repository()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0)