No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

marriage-relation-service.spec.ts 408B

12345678910111213141516
  1. import { TestBed } from '@angular/core/testing';
  2. import { MarriageRelationService } from './marriage-relation-service';
  3. describe('MarriageRelationService', () => {
  4. let service: MarriageRelationService;
  5. beforeEach(() => {
  6. TestBed.configureTestingModule({});
  7. service = TestBed.inject(MarriageRelationService);
  8. });
  9. it('should be created', () => {
  10. expect(service).toBeTruthy();
  11. });
  12. });