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

describe('UserCommunicationAddressController', () => {
  let controller: UserCommunicationAddressController;

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

    controller = module.get<UserCommunicationAddressController>(UserCommunicationAddressController);
  });

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