import { Test, TestingModule } from '@nestjs/testing';
import { UserCommunicationAddressService } from './user-communication-address.service';

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

  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      providers: [UserCommunicationAddressService],
    }).compile();

    service = module.get<UserCommunicationAddressService>(UserCommunicationAddressService);
  });

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