- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 1,431 for testUsing (0.05 sec)
-
impl/maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java
import org.apache.maven.session.scope.internal.SessionScope; import org.codehaus.plexus.PlexusContainer; import org.codehaus.plexus.component.repository.exception.ComponentLookupException; import org.codehaus.plexus.testing.PlexusTest; import org.eclipse.sisu.Typed; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.Mock; import org.mockito.junit.jupiter.MockitoExtension;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java
import org.apache.maven.repository.internal.MavenRepositorySystemUtils; import org.apache.maven.session.scope.internal.SessionScope; import org.codehaus.plexus.PlexusContainer; import org.codehaus.plexus.testing.PlexusTest; import org.eclipse.aether.DefaultRepositorySystemSession; import org.eclipse.aether.internal.impl.scope.ScopeManagerImpl; import org.junit.jupiter.api.BeforeEach;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 7.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/GeneralRangeTest.java
import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible; import com.google.common.annotations.J2ktIncompatible; import com.google.common.testing.NullPointerTester; import java.util.Arrays; import java.util.List; import java.util.Objects; import junit.framework.TestCase; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.4K bytes - Viewed (0) -
docs/de/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md
Sie können ihn lesen, um besser zu verstehen, was sich geändert hat. ## Tests { #tests } Stellen Sie sicher, dass Sie [Tests](../tutorial/testing.md){.internal-link target=_blank} für Ihre App haben und diese in Continuous Integration (CI) ausführen. Auf diese Weise können Sie das Update durchführen und sicherstellen, dass weiterhin alles wie erwartet funktioniert.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 24 10:28:19 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2FindFirst2ResponseTest.java
String actual = response.toString(); assertTrue(actual.startsWith("Trans2FindNext2Response[")); } // Helper methods to write data to byte arrays for testing read methods private void writeInt2(int val, byte[] dst, int dstIndex) { dst[dstIndex] = (byte) val; dst[dstIndex + 1] = (byte) (val >> 8); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/MimeMapTest.java
@DisplayName("Should load mime.map resource properly") void testResourceLoading() throws IOException { MimeMap map = new MimeMap(); assertNotNull(map); // Verify it works by testing a known mapping assertEquals("application/pdf", map.getMimeType("pdf")); } } @Nested @DisplayName("Performance and concurrency") class PerformanceTests {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.1K bytes - Viewed (0) -
compat/maven-compat/pom.xml
<!-- only for backward compatibility otherwhise would be test--> <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 8.1K bytes - Viewed (0) -
docs/es/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md
También incluye qué cambió, cómo las validaciones ahora son más correctas y estrictas, posibles consideraciones, etc. Puedes leerla para entender mejor qué cambió. ## Tests { #tests } Asegúrate de tener [tests](../tutorial/testing.md){.internal-link target=_blank} para tu app y de ejecutarlos en integración continua (CI). Así podrás hacer la actualización y asegurarte de que todo sigue funcionando como esperas. ## `bump-pydantic` { #bump-pydantic }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:16:35 UTC 2025 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelperTest.java
// Verify values were set correctly assertEquals("value1", bean1.getDirectField()); assertEquals("value2", bean2.getDirectField()); } /** * Test bean class for testing property setting. */ public static class TestBean { private String name; private String directField; private List<String> items = new ArrayList<>();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 12 14:59:46 UTC 2025 - 8.7K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/TransportExceptionTest.java
// The exception should be serializable since it extends CIFSException assertTrue(exception instanceof java.io.Serializable); } /** * Helper class for testing - not actually needed but demonstrates IOException usage */ private static class IOException extends Exception { public IOException(String message) { super(message); } }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0)