- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 224 for assertNull (0.06 sec)
-
compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesLoaderTest.java
import com.google.common.jimfs.Configuration; import com.google.common.jimfs.Jimfs; 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.assertThrows; class MavenPropertiesLoaderTest { @Test void testIncludes() throws Exception {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/EncodingHelperTest.java
} public void test_normalize_null() { String enc; enc = null; assertNull(encodingHelper.normalize(enc)); enc = ""; assertNull(encodingHelper.normalize(enc)); enc = " "; assertNull(encodingHelper.normalize(enc)); } public void test_normalize_default() { String enc;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/app/pager/BoostDocPagerTest.java
assertEquals(1, boostdocpager.getCurrentPageNumber()); assertNull(boostdocpager.id); assertNull(boostdocpager.urlExpr); assertNull(boostdocpager.boostExpr); assertNull(boostdocpager.sortOrder); assertNull(boostdocpager.createdBy); assertNull(boostdocpager.createdTime); assertNull(boostdocpager.versionNo); boostdocpager.setAllRecordCount(999);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/app/pager/DuplicateHostPagerTest.java
assertEquals(1, duplicatehostpager.getCurrentPageNumber()); assertNull(duplicatehostpager.id); assertNull(duplicatehostpager.regularName); assertNull(duplicatehostpager.duplicateHostName); assertNull(duplicatehostpager.sortOrder); assertNull(duplicatehostpager.createdBy); assertNull(duplicatehostpager.createdTime); assertNull(duplicatehostpager.versionNo);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiItemTest.java
assertEquals("r1", kuromojiItem.getReading()); assertEquals("p1", kuromojiItem.getPos()); assertNull(kuromojiItem.getNewToken()); assertNull(kuromojiItem.getNewSegmentation()); assertNull(kuromojiItem.getNewReading()); assertNull(kuromojiItem.getNewPos()); assertFalse(kuromojiItem.isUpdated()); assertFalse(kuromojiItem.isDeleted());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt
) } @Test fun nonBasicCodePointInPrefix() { assertNull(Punycode.decode("xn--cåt-n3h")) } @Test fun nonBasicCodePointInInsertionCoding() { assertNull(Punycode.decode("xn--cat-ñ3h")) } @Test fun unterminatedCodePoint() { assertNull(Punycode.decode("xn--cat-n")) } @Test fun overflowI() { assertNull(Punycode.decode("xn--99999999")) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java
assertTrue(map.remove(one, three)); assertFalse(map.containsKey(one)); assertFalse(map.containsValue(one)); assertNull(map.putIfAbsent(two, three)); assertSame(three, map.remove(two)); assertNull(map.put(three, one)); assertNull(map.put(one, two)); assertThat(map).containsEntry(three, one); assertThat(map).containsEntry(one, two);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 12.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java
assertTrue(map.remove(one, three)); assertFalse(map.containsKey(one)); assertFalse(map.containsValue(one)); assertNull(map.putIfAbsent(two, three)); assertSame(three, map.remove(two)); assertNull(map.put(three, one)); assertNull(map.put(one, two)); assertThat(map).containsEntry(three, one); assertThat(map).containsEntry(one, two);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 12.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapComputeIfPresentTester.java
public class MapComputeIfPresentTester<K, V> extends AbstractMapTester<K, V> { @MapFeature.Require(SUPPORTS_PUT) public void testComputeIfPresent_supportedAbsent() { assertNull( "computeIfPresent(notPresent, function) should return null", getMap() .computeIfPresent( k3(), (k, v) -> { throw new AssertionFailedError();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 6.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolderTest.java
assertNull(smbAuthenticationHolder.get(null)); assertNull(smbAuthenticationHolder.get("")); assertNull(smbAuthenticationHolder.get(" ")); assertNull(smbAuthenticationHolder.get("smb1://")); assertNull(smbAuthenticationHolder.get("smb1://hoge:1000/")); assertNull(smbAuthenticationHolder.get("smb1://foo/")); assertNull(smbAuthenticationHolder.get("smb1://foo:10000/"));
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0)