import { Test, TestingModule } from '@nestjs/testing';
import { GeneralFeedbackController } from './general-feedback.controller';

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

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

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

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