Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for nameFor (0.32 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private GeneratedMonitorTest(
          Method method,
          Scenario scenario,
          boolean fair,
          @Nullable Timeout timeout,
          Outcome expectedOutcome) {
        super(nameFor(method, scenario, fair, timeout, expectedOutcome));
        this.method = method;
        this.scenario = scenario;
        this.timeout = timeout;
        this.expectedOutcome = expectedOutcome;
        this.monitor = new Monitor(fair);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java

            @Test
            @DisplayName("Should create mock with string name")
            void testMockWithStringName() {
                String nameStr = "MOCK_CONTEXT";
                MockCreateContextResponse mock = new MockCreateContextResponse(nameStr);
    
                assertArrayEquals(nameStr.getBytes(StandardCharsets.UTF_8), mock.getName());
            }
    
            @Test
            @DisplayName("Should handle null string name")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

            @Test
            @DisplayName("Should create mock with string name")
            void testMockWithStringName() {
                String nameStr = "MOCK_CONTEXT";
                MockCreateContextRequest mock = new MockCreateContextRequest(nameStr);
    
                assertArrayEquals(nameStr.getBytes(StandardCharsets.UTF_8), mock.getName());
                assertEquals(32, mock.size());
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top