- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,268 for GoString (0.16 sec)
-
src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java
assertEquals(info1.toString(), info2.toString()); } @Test @DisplayName("Test encode does not modify source object") void testEncodeImmutability() { long originalValue = 1000L; FileEndOfFileInformation info = new FileEndOfFileInformation(originalValue); // Get original toString String originalString = info.toString(); // Encode
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessEnumTest.java
assertEquals("VERSION_2", WitnessVersion.VERSION_2.toString()); assertEquals("RESOURCE_CHANGE", WitnessEventType.RESOURCE_CHANGE.toString()); assertEquals("CLIENT_MOVE", WitnessEventType.CLIENT_MOVE.toString()); assertEquals("SHARE_MOVE", WitnessEventType.SHARE_MOVE.toString()); assertEquals("IP_CHANGE", WitnessEventType.IP_CHANGE.toString());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
confPath = ResourceUtil.getConfPath("dir1", "dir2", "file.conf"); assertNotNull(confPath); assertTrue(confPath.toString().contains("dir1")); assertTrue(confPath.toString().contains("dir2")); assertTrue(confPath.toString().contains("file.conf")); } public void test_getConfOrClassesPath() { // Test behavior when resource is not found try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
UUID uuid = new UUID(rpcUuid); // Act String result = uuid.toString(); // Assert assertEquals(VALID_UUID_STRING, result.toUpperCase(), "toString() should return the correct UUID string in uppercase"); } @Test @DisplayName("toString() should work correctly for UUID created from string") void testToStringFromConstructorWithString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
String[] values = { "value1" }; RequestParameter param = new RequestParameter(null, values); String expected = "[null, [value1]]"; assertEquals(expected, param.toString()); } public void test_toString_withNullValues() { // Test toString with null values String name = "testParam"; RequestParameter param = new RequestParameter(name, null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SecurityBlobTest.java
Arguments.of(new byte[] { (byte) 0x7F, (byte) 0x80, (byte) 0xFF }, "7f80ff")); } // Verifies that toString() formats bytes as lower-case hex with zero-padding @ParameterizedTest(name = "toString renders hex for {0}") @MethodSource("hexCases") @DisplayName("toString() renders lower-case hex with zero-padding") void toString_rendersHex(byte[] input, String expected) { // Arrange
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
Exception exception = new RuntimeException("Test error message"); monitorTarget.appendException(buf, exception); assertTrue(buf.toString().startsWith("\"exception\":\"")); assertTrue(buf.toString().contains("Test error message")); assertTrue(buf.toString().contains("RuntimeException")); } // Test appendException method with nested exception
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java
String infoString = info.toString(); assertTrue(infoString.contains("alloc=1000"), "toString should contain alloc"); assertTrue(infoString.contains("free=500"), "toString should contain free"); assertTrue(infoString.contains("sectPerAlloc=100"), "toString should contain sectPerAlloc"); assertTrue(infoString.contains("bytesPerSect=512"), "toString should contain bytesPerSect"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmChallengeTest.java
} @Nested @DisplayName("toString() Tests") class ToStringTests { @Test @DisplayName("toString with valid data produces expected format") void testToStringWithValidData() { byte[] challenge = new byte[] { (byte) 0x01, (byte) 0x02, (byte) 0x03, (byte) 0xFF }; UniAddress dc = mock(UniAddress.class); when(dc.toString()).thenReturn("SERVER123");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 15.7K bytes - Viewed (0)