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

describe('PhrHealthLockerService', () => {
  let service: PhrHealthLockerService;

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

    service = module.get<PhrHealthLockerService>(PhrHealthLockerService);
  });

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