- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 200 for assertAll (0.1 sec)
-
android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java
} public void testGet_constantWithGenericsNotUsed() { assertNull(ArbitraryInstances.get(WithGenericConstant.class)); } public void testGet_nullConstant() { assertNull(ArbitraryInstances.get(WithNullConstant.class)); } public void testGet_constantTypeDoesNotMatch() { assertNull(ArbitraryInstances.get(ParentClassHasConstant.class)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 21.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/app/pager/CrawlingInfoPagerTest.java
assertEquals(25, crawlinginfopage.getPageSize()); assertEquals(1, crawlinginfopage.getCurrentPageNumber()); assertNull(crawlinginfopage.id); assertNull(crawlinginfopage.sessionId); assertNull(crawlinginfopage.createdTime); assertEquals(1, crawlinginfopage.getDefaultCurrentPageNumber()); crawlinginfopage.setAllRecordCount(999);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java
expectReplacement(entry(k0(), v3())); } @MapFeature.Require(SUPPORTS_PUT) public void testPut_supportedNotPresent() { assertNull("put(notPresent, value) should return null", put(e3())); expectAdded(e3()); } @MapFeature.Require({FAILS_FAST_ON_CONCURRENT_MODIFICATION, SUPPORTS_PUT}) @CollectionSize.Require(absent = ZERO)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java
artifact = getArtifact(project, "maven-test-test", "scope-provided"); assertNull(artifact, "Check no provided dependencies are transitive"); artifact = getArtifact(project, "maven-test-test", "scope-test"); assertNull(artifact, "Check no test dependencies are transitive"); artifact = getArtifact(project, "maven-test-test", "scope-compile");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
} public void test_normalizeLang() { String value = null; assertNull(systemHelper.normalizeLang(value)); value = ""; assertNull(systemHelper.normalizeLang(value)); value = "_ja"; assertNull(systemHelper.normalizeLang(value)); value = "ja"; assertEquals("ja", systemHelper.normalizeLang(value));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
return; } assertNull(map.get(unmappedKey)); } public void testGetForEmptyMap() { Map<K, V> map; K unmappedKey = null; try { map = makeEmptyMap(); unmappedKey = getKeyNotInPopulatedMap(); } catch (UnsupportedOperationException e) { return; } assertNull(map.get(unmappedKey)); } public void testGetNull() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 43.8K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/MediaTypeTest.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3 import kotlin.test.Test import kotlin.test.assertEquals import kotlin.test.assertNull import okhttp3.MediaType.Companion.toMediaTypeOrNull /** * Test MediaType API and parsing. * * This test includes tests from [Guava's](https://code.google.com/p/guava-libraries/) * MediaTypeTest. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/OptionalTest.java
*/ @ElementTypesAreNonnullByDefault @GwtCompatible(emulated = true) public final class OptionalTest extends TestCase { @SuppressWarnings("NullOptional") public void testToJavaUtil_static() { assertNull(Optional.toJavaUtil(null)); assertEquals(java.util.Optional.empty(), Optional.toJavaUtil(Optional.absent())); assertEquals(java.util.Optional.of("abc"), Optional.toJavaUtil(Optional.of("abc"))); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/ResourceUtilTest.java
/** * @throws Exception */ public void testGetResourceAsStreamNoException() throws Exception { assertNotNull(ResourceUtil.getResourceAsStreamNoException("java/lang/String.class", "class")); assertNull(ResourceUtil.getResourceAsStreamNoException("java/lang/String2.class", "class")); } /** * @throws Exception */ public void testGetBuildDir() throws Exception {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 4.3K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/ModelVersionParserTest.java
import org.eclipse.aether.util.version.GenericVersionScheme; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; /** */ public class ModelVersionParserTest {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0)