import { Test, TestingModule } from '@nestjs/testing';
import { PhrHealthLockerController } from './phr_health_locker.controller';
import { PhrHealthLockerService } from './phr_health_locker.service';

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

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

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

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