Home / Function/ verifyNotCompleted() — netty Function Reference

verifyNotCompleted() — netty Function Reference

Architecture documentation for the verifyNotCompleted() function in PromiseCombinerTest.java from the netty codebase.

Function java Buffer Search called by 4

Entity Profile

Dependency Diagram

graph TD
  2e181b39_5c34_a5a5_f8c5_1ed157e6ffe7["verifyNotCompleted()"]
  64e2a604_76bd_8150_6c8d_5a16b7d30a6b["PromiseCombinerTest"]
  2e181b39_5c34_a5a5_f8c5_1ed157e6ffe7 -->|defined in| 64e2a604_76bd_8150_6c8d_5a16b7d30a6b
  cc651628_d82b_98bc_01a6_d4e25c141ba1["testAddAllSuccess()"]
  cc651628_d82b_98bc_01a6_d4e25c141ba1 -->|calls| 2e181b39_5c34_a5a5_f8c5_1ed157e6ffe7
  7b40c960_5411_5c4d_4e7c_9721f458db05["testAddSuccess()"]
  7b40c960_5411_5c4d_4e7c_9721f458db05 -->|calls| 2e181b39_5c34_a5a5_f8c5_1ed157e6ffe7
  6eacaeeb_05b7_4cc0_7f9b_cc25fe020b1a["testAddAllFail()"]
  6eacaeeb_05b7_4cc0_7f9b_cc25fe020b1a -->|calls| 2e181b39_5c34_a5a5_f8c5_1ed157e6ffe7
  cc88597f_b8ce_7c59_cc3f_567b89088d49["testAddFail()"]
  cc88597f_b8ce_7c59_cc3f_567b89088d49 -->|calls| 2e181b39_5c34_a5a5_f8c5_1ed157e6ffe7
  style 2e181b39_5c34_a5a5_f8c5_1ed157e6ffe7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/test/java/io/netty/util/concurrent/PromiseCombinerTest.java lines 232–237

    private static void verifyNotCompleted(Promise<Void> p) {
        verify(p, never()).trySuccess(any(Void.class));
        verify(p, never()).tryFailure(any(Throwable.class));
        verify(p, never()).setSuccess(any(Void.class));
        verify(p, never()).setFailure(any(Throwable.class));
    }

Domain

Subdomains

Frequently Asked Questions

What does verifyNotCompleted() do?
verifyNotCompleted() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/concurrent/PromiseCombinerTest.java.
Where is verifyNotCompleted() defined?
verifyNotCompleted() is defined in common/src/test/java/io/netty/util/concurrent/PromiseCombinerTest.java at line 232.
What calls verifyNotCompleted()?
verifyNotCompleted() is called by 4 function(s): testAddAllFail, testAddAllSuccess, testAddFail, testAddSuccess.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free