< Summary

Class:RotaryWingThreat
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Threats/RotaryWingThreat.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:11
Line coverage:100% (5 of 5)
Covered branches:0
Total branches:0
Covered methods:1
Total methods:1
Method coverage:100% (1 of 1)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Awake()0%110100%

File(s)

/github/workspace/Assets/Scripts/Threats/RotaryWingThreat.cs

#LineLine coverage
 1// Rotary wing threat.
 2//
 3// The rotary wing threat uses a waypoint controller to follow its attack behavior.
 4public class RotaryWingThreat : ThreatBase {
 565  protected override void Awake() {
 566    base.Awake();
 7
 568    Movement = new IdealMovement(this);
 569    Controller = new WaypointController(this);
 5610  }
 11}

Methods/Properties

Awake()