< Summary

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

Metrics

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

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 {
 05  protected override void Awake() {
 06    base.Awake();
 7
 08    Movement = new IdealMovement(this);
 09    Controller = new WaypointController(this);
 010  }
 11}

Methods/Properties

Awake()