Home / Function/ UntestedFunctionFromJSONTyped() — typescript-sdk Function Reference

UntestedFunctionFromJSONTyped() — typescript-sdk Function Reference

Architecture documentation for the UntestedFunctionFromJSONTyped() function in UntestedFunction.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  2ed14576_4ccb_cd44_2d06_1161ed0b73fe["UntestedFunctionFromJSONTyped()"]
  33b7d843_6576_2cd6_b5b0_2766c8690a9a["UntestedFunctionFromJSON()"]
  33b7d843_6576_2cd6_b5b0_2766c8690a9a -->|calls| 2ed14576_4ccb_cd44_2d06_1161ed0b73fe
  f97ac75a_d4aa_320f_86fa_2a614741a3a2["NearestTestedCallerFromJSON()"]
  2ed14576_4ccb_cd44_2d06_1161ed0b73fe -->|calls| f97ac75a_d4aa_320f_86fa_2a614741a3a2
  style 2ed14576_4ccb_cd44_2d06_1161ed0b73fe fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/UntestedFunction.ts lines 134–150

export function UntestedFunctionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UntestedFunction {
    if (json == null) {
        return json;
    }
    return {
        
        'file': json['file'],
        'name': json['name'],
        'line': json['line'],
        'type': json['type'],
        'confidence': json['confidence'],
        'reason': json['reason'],
        'nearestTestedCaller': json['nearestTestedCaller'] == null ? undefined : NearestTestedCallerFromJSON(json['nearestTestedCaller']),
        'suggestedTestFile': json['suggestedTestFile'] == null ? undefined : json['suggestedTestFile'],
        'testedSiblings': json['testedSiblings'] == null ? undefined : ((json['testedSiblings'] as Array<any>).map(TestedSiblingFromJSON)),
    };
}

Domain

Subdomains

Frequently Asked Questions

What does UntestedFunctionFromJSONTyped() do?
UntestedFunctionFromJSONTyped() is a function in the typescript-sdk codebase.
What does UntestedFunctionFromJSONTyped() call?
UntestedFunctionFromJSONTyped() calls 1 function(s): NearestTestedCallerFromJSON.
What calls UntestedFunctionFromJSONTyped()?
UntestedFunctionFromJSONTyped() is called by 1 function(s): UntestedFunctionFromJSON.

Analyze Your Own Codebase

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

Try Supermodel Free