camelCaseDave/xrm-mock

View on GitHub
src/xrm-mock/controls/controlnotificationaction/controlnotificationaction.mock.ts

Summary

Maintainability
A
0 mins
Test Coverage
F
50%
export class ControlNotificationActionMock implements Xrm.Controls.ControlNotificationAction {
  public message?: string;
  public actions: Array<() => void>;

  constructor(actions: Array<() => void>, message?: string) {
    this.message = message;
    this.actions = actions;
  }
}