all files / core/spying/ spy-call.ts

100% Statements 7/7
100% Branches 0/0
100% Functions 3/3
100% Lines 6/6
1 2 3 4 5 6 7 8 9 10 11 12     10×     95×    
export class SpyCall {
 
  private _args: Array<any>;
  public get args() {
    return this._args;
  }
 
  public constructor(args: Array<any>) {
    this._args = args;
  }
}