- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for testParameterizedConstructor (0.66 sec)
-
src/test/java/jcifs/internal/fscc/FileRenameInformation2Test.java
@DisplayName("Test default constructor") void testDefaultConstructor() { assertNotNull(fileRenameInfo); } @Test @DisplayName("Test parameterized constructor") void testParameterizedConstructor() { String fileName = "test.txt"; boolean replaceIfExists = true; FileRenameInformation2 info = new FileRenameInformation2(fileName, replaceIfExists); assertNotNull(info);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
assertEquals(0L, shareInfo.lastAccess()); assertEquals(0L, shareInfo.length()); } @Test @DisplayName("Test parameterized constructor") void testParameterizedConstructor() { // Create instance with test values SmbShareInfo info = new SmbShareInfo(TEST_NET_NAME, TEST_TYPE, TEST_REMARK); // Verify all values are set correctly
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java
assertEquals(0L, fileBasicInfo.getLastWriteTime()); assertEquals(0, fileBasicInfo.getAttributes()); } @Test @DisplayName("Test parameterized constructor") void testParameterizedConstructor() { // Create instance with test values FileBasicInfo info = new FileBasicInfo(TEST_CREATE_TIME, TEST_LAST_ACCESS_TIME, TEST_LAST_WRITE_TIME, TEST_CHANGE_TIME, TEST_ATTRIBUTES);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java
assertEquals(FileInformation.FILE_ENDOFFILE_INFO, fileInfo.getFileInformationLevel()); } @Test @DisplayName("Test parameterized constructor with end of file value") void testParameterizedConstructor() { // Test with specific end of file value long endOfFile = 1024L; FileEndOfFileInformation info = new FileEndOfFileInformation(endOfFile); assertNotNull(info);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0)