@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
28 lines (23 loc) • 839 B
text/typescript
import type { JSONObject} from 'tiny-types';
import { ensure, isDefined, TinyType } from 'tiny-types';
import { Description } from './Description';
import { Name } from './Name';
export class ScenarioParameters extends TinyType {
public static fromJSON(o: JSONObject): ScenarioParameters {
return new ScenarioParameters(
Name.fromJSON(o.name as string),
Description.fromJSON(o.description as string),
(o as any).values,
);
}
constructor(
public readonly name: Name,
public readonly description: Description,
public readonly values: { [ parameter: string ]: string },
) {
super();
ensure('name', name, isDefined());
ensure('description', description, isDefined());
ensure('values', values, isDefined());
}
}