import { Test, TestingModule } from '@nestjs/testing'; import { UserTypeCrudController } from './user-type-crud.controller'; describe('UserTypeCrud Controller', () => { let controller: UserTypeCrudController; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ controllers: [UserTypeCrudController], }).compile(); controller = module.get(UserTypeCrudController); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });