import { Test, TestingModule } from '@nestjs/testing';
import { PhrNewBillingController } from './phr-new-billing.controller';
import { PhrNewBillingService } from './phr-new-billing.service';

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

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

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

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