24 lines
475 B
JavaScript
24 lines
475 B
JavaScript
/**
|
|
* Created by mkumar1 on 09-05-2017.
|
|
*/
|
|
|
|
describe('Testing Location VO', function () {
|
|
|
|
var locationVo;
|
|
|
|
it('should create object and test properties', function () {
|
|
|
|
locationVo = new LocationVO();
|
|
|
|
expect(locationVo.floorMapId).toEqual('');
|
|
expect(locationVo.poi).toEqual('');
|
|
|
|
});
|
|
|
|
it('should verify all the properties', function () {
|
|
|
|
var returnVal = locationVo.getProps();
|
|
expect(returnVal).toEqual(['entityId', 'type', 'displayValue']);
|
|
|
|
});
|
|
}); |