import { Test, TestingModule } from '@nestjs/testing';
import { FilterBatchService } from './filter-batch.service';

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

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

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

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