< Summary

Class:IAssignment
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Assignment/Assignment.cs
Covered lines:11
Uncovered lines:0
Coverable lines:11
Total lines:42
Line coverage:100% (11 of 11)
Covered branches:0
Total branches:0
Covered methods:3
Total methods:3
Method coverage:100% (3 of 3)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
AssignmentItem(...)0%110100%
GetAssignableInterceptors(...)0%220100%
GetActiveThreats(...)0%220100%

File(s)

/github/workspace/Assets/Scripts/Assignment/Assignment.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Collections;
 4using System.Diagnostics.Contracts;
 5using System.Linq;
 6using UnityEngine;
 7
 8// The assignment class is an interface for assigning a threat to each interceptor.
 9public interface IAssignment {
 10  // Assignment item type.
 11  // The first element corresponds to the interceptor index, and the second element
 12  // corresponds to the threat index.
 13  public struct AssignmentItem {
 14    public Interceptor Interceptor;
 15    public Threat Threat;
 16
 1217    public AssignmentItem(Interceptor interceptor, Threat threat) {
 1218      Interceptor = interceptor;
 1219      Threat = threat;
 1220    }
 21  }
 22
 23  // Assign a target to each interceptor that has not been assigned a target yet.
 24  [Pure]
 25  public abstract IEnumerable<AssignmentItem> Assign(in IReadOnlyList<Interceptor> interceptors,
 26                                                     in IReadOnlyList<Threat> threats);
 27
 28  // Get the list of assignable interceptors.
 29  [Pure]
 30  public static List<Interceptor> GetAssignableInterceptors(
 831      in IReadOnlyList<Interceptor> interceptors) {
 832    return interceptors
 1433        .Where(interceptor => interceptor.IsAssignable() && !interceptor.IsTerminated())
 34        .ToList();
 835  }
 36
 37  // Get the list of active threats.
 38  [Pure]
 639  public static List<Threat> GetActiveThreats(in IReadOnlyList<Threat> threats) {
 1640    return threats.Where(threat => !threat.IsTerminated()).ToList();
 641  }
 42}