// APP
import { PagedArrayCollection } from './PagedArrayCollection';

describe('Service: PagedArrayCollection', () => {
    let service;

    beforeEach(() => {
        service = new PagedArrayCollection();
    });

    it('should be defined.', () => {
        expect(service).toBeDefined();
    });
});
