blob: 00014e8bc9ef0f41b681b7ed8a6168c77be72a49 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { IconCellRendererComponent } from './icon-cell-renderer.component';
describe('ToolCellRendererComponent', () => {
let component: IconCellRendererComponent;
beforeEach(() => {
component = new IconCellRendererComponent();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});