- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 720 for tested (0.03 seconds)
-
guava-testlib/src/com/google/common/collect/testing/TestMapGenerator.java
import com.google.common.annotations.GwtCompatible; import java.util.Map; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Creates maps, containing sample elements, to be tested. * * @author George van den Driessche */ @GwtCompatible @NullMarked public interface TestMapGenerator<K extends @Nullable Object, V extends @Nullable Object>
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.1K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestIteratorGenerator.java
* limitations under the License. */ package com.google.common.collect.testing; import com.google.common.annotations.GwtCompatible; import java.util.Iterator; /** * Creates iterators to be tested. * * @param <E> the element type of the iterator. * @author George van den Driessche */ @GwtCompatible public interface TestIteratorGenerator<E> { Iterator<E> get();
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Dec 04 17:37:03 GMT 2017 - 938 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
return parent.isEmpty(); } /** * Returns true if this map contains a mapping for the specified key. * * @param key the key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified key */ @Override public boolean containsKey(final Object key) { return parent.containsKey(key); } /**
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/PackageSanityTests.java
import org.jspecify.annotations.NullUnmarked; /** Basic sanity tests for classes in {@code common.base}. */ @GwtIncompatible @NullUnmarked public class PackageSanityTests extends AbstractPackageSanityTests { public PackageSanityTests() { // package private classes like FunctionalEquivalence are tested through the public API. publicApiOnly(); }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 1.1K bytes - Click Count (0) -
compat/maven-embedder/src/examples/simple-project/src/test/java/org/apache/maven/embedder/AppTest.java
/** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( AppTest.class ); } /** * Rigorous Test :-) */ public void testApp() { assertTrue( true ); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 14:10:21 GMT 2025 - 1.4K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/TestListGenerator.java
import com.google.common.annotations.GwtCompatible; import java.util.List; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Creates sets, containing sample elements, to be tested. * * @author Kevin Bourrillion */ @GwtCompatible @NullMarked public interface TestListGenerator<E extends @Nullable Object> extends TestCollectionGenerator<E> { @Override List<E> create(Object... elements);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.1K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestQueueGenerator.java
import com.google.common.annotations.GwtCompatible; import java.util.Queue; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Creates queues, containing sample elements, to be tested. * * @author Jared Levy */ @GwtCompatible @NullMarked public interface TestQueueGenerator<E extends @Nullable Object> extends TestCollectionGenerator<E> { @Override Queue<E> create(Object... elements);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.1K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/google/TestMultisetGenerator.java
import com.google.common.collect.testing.TestCollectionGenerator; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Creates multisets, containing sample elements, to be tested. * * @author Jared Levy */ @GwtCompatible @NullMarked public interface TestMultisetGenerator<E extends @Nullable Object> extends TestCollectionGenerator<E> { @Override
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.2K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestMapGenerator.java
import com.google.common.annotations.GwtCompatible; import java.util.Map; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Creates maps, containing sample elements, to be tested. * * @author George van den Driessche */ @GwtCompatible @NullMarked public interface TestMapGenerator<K extends @Nullable Object, V extends @Nullable Object>
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.1K bytes - Click Count (0) -
PULL_REQUESTS_ETIQUETTE.md
- If you edit, you’re a collaborator, not a reviewer, and cannot merge. 6. **Testing**: - Assume the submitter tested the code. If testing is unclear, ask for details (e.g., “How was this tested?”). - Reject untested PRs unless testing is infeasible, then assist with test setup. ## Tips for Success - **Small PRs**: Easier to review, faster to merge. Split large changes logically.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun May 25 16:32:03 GMT 2025 - 4.7K bytes - Click Count (0)