18 lines
612 B
TypeScript
18 lines
612 B
TypeScript
import {isPresent} from '../src/facade/lang';
|
|
import {ElementSchemaRegistry} from '../index';
|
|
|
|
export class MockSchemaRegistry implements ElementSchemaRegistry {
|
|
constructor(public existingProperties: {[key: string]: boolean},
|
|
public attrPropMapping: {[key: string]: string}) {}
|
|
|
|
hasProperty(tagName: string, property: string): boolean {
|
|
var result = this.existingProperties[property];
|
|
return isPresent(result) ? result : true;
|
|
}
|
|
|
|
getMappedPropName(attrName: string): string {
|
|
var result = this.attrPropMapping[attrName];
|
|
return isPresent(result) ? result : attrName;
|
|
}
|
|
}
|