< Summary

Class:ShoreBattery
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Interceptors/ShoreBattery.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:10
Line coverage:100% (4 of 4)
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/Interceptors/ShoreBattery.cs

#LineLine coverage
 1// Shore battery.
 2//
 3// The shore battery launches carrier interceptors from a stationary, ground-based launcher.
 4public class ShoreBattery : LauncherBase {
 25  protected override void Awake() {
 26    base.Awake();
 7
 28    Movement = new NoMovement(this);
 29  }
 10}

Methods/Properties

Awake()