import { Test, TestingModule } from '@nestjs/testing';
import { DiagnosisSubCategoryListController } from './diagnosis-sub-category-list.controller';
import { DiagnosisSubCategoryListService } from './diagnosis-sub-category-list.service';

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

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

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

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