- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for FOOBAR (0.03 sec)
-
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
testStreamingEncodingWithSeparators(enc, "foobar", "Zm9vYmFy"); } public void testBase64Offset() { testEncodesWithOffset(base64(), "foobar", 0, 6, "Zm9vYmFy"); testEncodesWithOffset(base64(), "foobar", 1, 5, "b29iYXI="); testEncodesWithOffset(base64(), "foobar", 2, 3, "b2Jh"); testEncodesWithOffset(base64(), "foobar", 3, 1, "Yg=="); testEncodesWithOffset(base64(), "foobar", 4, 0, ""); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/CaseFormatTest.java
assertThat(LOWER_CAMEL.to(LOWER_CAMEL, "foo")).isEqualTo("foo"); assertThat(LOWER_CAMEL.to(LOWER_CAMEL, "fooBar")).isEqualTo("fooBar"); } public void testLowerCamelToUpperCamel() { assertThat(LOWER_CAMEL.to(UPPER_CAMEL, "foo")).isEqualTo("Foo"); assertThat(LOWER_CAMEL.to(UPPER_CAMEL, "fooBar")).isEqualTo("FooBar"); assertThat(LOWER_CAMEL.to(UPPER_CAMEL, "hTTP")).isEqualTo("HTTP"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/BaseEncodingTest.java
testStreamingEncodingWithSeparators(enc, "foobar", "Zm9vYmFy"); } public void testBase64Offset() { testEncodesWithOffset(base64(), "foobar", 0, 6, "Zm9vYmFy"); testEncodesWithOffset(base64(), "foobar", 1, 5, "b29iYXI="); testEncodesWithOffset(base64(), "foobar", 2, 3, "b2Jh"); testEncodesWithOffset(base64(), "foobar", 3, 1, "Yg=="); testEncodesWithOffset(base64(), "foobar", 4, 0, ""); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ObjectsTest.java
}) public void testEqual() throws Exception { assertTrue(Objects.equal(1, 1)); assertTrue(Objects.equal(null, null)); // test distinct string objects String s1 = "foobar"; String s2 = new String(s1); assertTrue(Objects.equal(s1, s2)); assertFalse(Objects.equal(s1, null)); assertFalse(Objects.equal(null, s1)); assertFalse(Objects.equal("foo", "bar"));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 2.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
} public void testEncodedLength_invalidStrings() { testEncodedLengthFails(newString(MIN_HIGH_SURROGATE), 0); testEncodedLengthFails("foobar" + newString(MIN_HIGH_SURROGATE), 6); testEncodedLengthFails(newString(MIN_LOW_SURROGATE), 0); testEncodedLengthFails("foobar" + newString(MIN_LOW_SURROGATE), 6); testEncodedLengthFails(newString(MIN_HIGH_SURROGATE, MIN_HIGH_SURROGATE), 0); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java
} public void testRemoveFromStringHeap() { MinMaxPriorityQueue<String> mmHeap = rawtypeToWildcard(MinMaxPriorityQueue.expectedSize(5)).create(); Collections.addAll(mmHeap, "foo", "bar", "foobar", "barfoo", "larry", "sergey", "eric"); assertTrue("Heap is not intact initially", mmHeap.isIntact()); assertEquals("bar", mmHeap.peek()); assertEquals("sergey", mmHeap.peekLast());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36K bytes - Viewed (0)