import {Product, ProductConfiguration, ProductPreRequisites, ProductVersion} from './product';

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

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

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

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