- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testCommandProperty (0.2 sec)
-
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
@BeforeEach void setup() { testBlock = new TestServerMessageBlock(mockConfig); } @Test @DisplayName("Test command property") void testCommandProperty() { testBlock.setCommand(0x42); assertEquals(0x42, testBlock.getCommand()); } @Test @DisplayName("Test flags property") void testFlagsProperty() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
} } @Nested @DisplayName("Basic Property Tests") class BasicPropertyTests { @Test @DisplayName("Should get and set command") void testCommandProperty() { assertEquals(0, testMessage.getCommand()); testMessage.setCommand(ServerMessageBlock2.SMB2_CREATE); assertEquals(ServerMessageBlock2.SMB2_CREATE, testMessage.getCommand());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0)