component-dbs-core
Version:
DTO objects shared among device backend
19 lines (18 loc) • 681 B
TypeScript
import { DeviceService } from '../../../devices/deviceService';
import { IdentityTestCase } from './testCases';
export declare class ChangePwdTestSuite {
params: (boolean | IdentityTestCase)[][];
getParameterForTestCase(testCase: number, deviceService: DeviceService): Promise<{
password: string;
userId: string;
testCaseCode: IdentityTestCase.CHANGEPASSWORD_SUCCESS;
} | {
password: string;
userId: string;
testCaseCode: IdentityTestCase.CHANGEPASSWORD_UNKNOWN_ERROR;
} | {
password: string;
userId: string;
testCaseCode: IdentityTestCase.CHANGEPASSWORD_USER_NOT_FOUND;
} | undefined>;
}