< Summary

Class:ShoreBattery
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Interceptors/ShoreBattery.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:10
Line coverage:0% (0 of 4)
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/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 {
 05  protected override void Awake() {
 06    base.Awake();
 7
 08    Movement = new NoMovement(this);
 09  }
 10}

Methods/Properties

Awake()