18 lines
532 B
JavaScript
18 lines
532 B
JavaScript
/*** Created by npatil2.*/
|
|
describe("Test EmailWindowVO", function () {
|
|
var smartRecorderVO;
|
|
|
|
it(" should create object ", function () {
|
|
|
|
emailWindowVO = new EmailWindowVO();
|
|
expect(emailWindowVO instanceof BaseVO).toEqual(true);
|
|
expect(emailWindowVO instanceof EmailWindowVO).toEqual(true);
|
|
});
|
|
|
|
it(" should initilize objects with all properties ", function () {
|
|
var emailWindowVOProps = emailWindowVO.getProps();
|
|
expect(emailWindowVO.ticketData).toBeDefined();
|
|
|
|
});
|
|
});
|