import { Test, TestingModule } from '@nestjs/testing';
import { OpHubNewBillingController } from './op-hub-new-billing.controller';
import { OpHubNewBillingService } from './op-hub-new-billing.service';

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

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

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

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