camelCaseDave/xrm-mock

View on GitHub
src/xrm-mock/optionsetvalue/optionsetvalue.mock.ts

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
export class OptionSetValueMock implements Xrm.OptionSetValue {
    public text: string;
    public value: number;

    constructor(text: string, value: number) {
        this.text = text;
        this.value = value;
    }
}