import { TestBed, inject } from '@angular/core/testing';

import { RegPontService } from './reg-pont.service';

describe('RegPontService', () => {
    beforeEach(() => {
        TestBed.configureTestingModule({
            providers: [RegPontService]
        });
    });

    it('should be created', inject([RegPontService], (service: RegPontService) => {
        expect(service).toBeTruthy();
    }));
});
