import {FileTemplate, QueueSetting, Setting, WorkflowSetting} from './setting';

describe('Setting', () => {
  it('should create an instance', () => {
    expect(new Setting()).toBeTruthy();
  });
});

describe('QueueSetting', () => {
  it('should create an instance', () => {
    expect(new QueueSetting()).toBeTruthy();
  });
});

describe('FileTemplate', () => {
  it('should create an instance', () => {
    expect(new FileTemplate()).toBeTruthy();
  });
});

describe('WorkflowSetting', () => {
  it('should create an instance', () => {
    expect(new WorkflowSetting()).toBeTruthy();
  });
});