- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 2,776 for 1test (0.02 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/DeploymentRepositoryTest.java
} @Test void testEqualsNullSafe() { assertFalse(new DeploymentRepository().equals(null)); new DeploymentRepository().equals(new DeploymentRepository()); } @Test void testEqualsIdentity() { DeploymentRepository thing = new DeploymentRepository(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() {
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
@Test void testEqualsNullSafe() { assertFalse(new Notifier().equals(null)); new Notifier().equals(new Notifier()); } @Test void testEqualsIdentity() { Notifier thing = new Notifier(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Notifier().toString()); }
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
@Test void testEqualsNullSafe() { assertFalse(new PluginExecution().equals(null)); new PluginExecution().equals(new PluginExecution()); } @Test void testEqualsIdentity() { PluginExecution thing = new PluginExecution(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new PluginExecution().toString()); }
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
} @Test void testEqualsNullSafe() { assertFalse(new PluginManagement().equals(null)); new PluginManagement().equals(new PluginManagement()); } @Test void testEqualsIdentity() { PluginManagement thing = new PluginManagement(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new PluginManagement().toString());
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
@Test void testEqualsNullSafe() { assertFalse(new ReportSet().equals(null)); new ReportSet().equals(new ReportSet()); } @Test void testEqualsIdentity() { ReportSet thing = new ReportSet(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new ReportSet().toString()); }
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
@Test void testEqualsNullSafe() { assertFalse(new Repository().equals(null)); new Repository().equals(new Repository()); } @Test void testEqualsIdentity() { Repository thing = new Repository(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Repository().toString()); }
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-builder/src/test/resources/poms/validation/bad-plugin-version.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats
fi } teardown_file() { rm -rf /tf/venv } @test "Wheel is manylinux2014 (manylinux_2_17) compliant" { python3 -m auditwheel show "$TF_WHEEL" > audit.txt grep --quiet -zoP 'is consistent with the following platform tag:\n"manylinux_2_17_(aarch|x86_)64"\.' audit.txt } @test "Wheel conforms to upstream size limitations" {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Jan 23 02:14:00 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
* under the License. */ package org.apache.maven.artifact.versioning; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Test DefaultArtifactVersion. * */ class DefaultArtifactVersionTest {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.5K bytes - Viewed (0) -
mockwebserver/README.md
### Motivation This library makes it easy to test that your app Does The Right Thing when it makes HTTP and HTTPS calls. It lets you specify which responses to return and then verify that requests were made as expected. Because it exercises your full HTTP stack, you can be confident that you're testing everything. You can even copy & paste HTTP responses from your real web server to create representative test cases. Or test that your code survives in
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 17 15:34:10 UTC 2023 - 5K bytes - Viewed (0)