import { TestBed, inject } from '@angular/core/testing';

import { NativeLibraryWrapperService } from './native-library-wrapper.service';

describe('NativeLibraryWrapperService', () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      providers: [NativeLibraryWrapperService]
    });
  });

  it('should be created', inject([NativeLibraryWrapperService], (service: NativeLibraryWrapperService) => {
    expect(service).toBeTruthy();
  }));
});