Files

50 lines
1.3 KiB
TypeScript
Raw Permalink Normal View History

2023-01-27 22:53:14 -06:00
import { PagedResponse } from '../src/models/PagedResponse';
import { expect } from 'chai';
describe('PagedResponse', function () {
it('should be defined', function () {
expect(PagedResponse).to.not.be.undefined;
});
it('should have a constructor', function () {
expect(PagedResponse).to.have.property('constructor');
});
it('should have 4 parameters', function () {
expect(PagedResponse).to.have.lengthOf(5);
2023-01-27 22:53:14 -06:00
});
it('should construct a new instance of PagedResponse', function () {
2023-02-01 23:45:14 -06:00
const pagedResponse = new PagedResponse<number>(
[1, 2, 3, 4],
1,
10,
100,
100
);
2023-01-27 22:53:14 -06:00
expect(pagedResponse).to.not.be.undefined;
expect(pagedResponse).to.be.instanceOf(PagedResponse);
2023-02-01 23:45:14 -06:00
expect(pagedResponse)
.to.have.property('items')
.to.be.an('array')
.to.have.lengthOf(4);
expect(pagedResponse)
.to.have.property('pageNumber')
.to.be.a('number')
.to.equal(1);
expect(pagedResponse)
.to.have.property('pageSize')
.to.be.a('number')
.to.equal(10);
expect(pagedResponse)
.to.have.property('totalPages')
.to.be.a('number')
.to.equal(100);
expect(pagedResponse)
.to.have.property('totalRecords')
.to.be.a('number')
.to.equal(100);
2023-01-27 22:53:14 -06:00
});
});