import { Test, TestingModule } from '@nestjs/testing';
import { XeroTestingController } from './xero-testing.controller';
import { XeroTestingService } from './xero-testing.service';

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

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

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

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