import { Test, TestingModule } from '@nestjs/testing';
import { ChiefComplaintsListController } from './chief_complaints_list.controller';
import { ChiefComplaintsListService } from './chief_complaints_list.service';

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

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

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

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