import { SpatialDataComponent } from "../../../src/component/spatialdata/SpatialDataComponent"; import { ContainerMockCreator } from "../../helper/ContainerMockCreator"; import { NavigatorMockCreator } from "../../helper/NavigatorMockCreator"; describe("SpatialDataComponent.ctor", () => { it("should be defined", () => { const component: SpatialDataComponent = new SpatialDataComponent( SpatialDataComponent.componentName, new ContainerMockCreator().create(), new NavigatorMockCreator().create()); expect(component).toBeDefined(); }); }); describe("SpatialDataComponent.deactivate", () => { it("should deactivate properly", () => { const component: SpatialDataComponent = new SpatialDataComponent( SpatialDataComponent.componentName, new ContainerMockCreator().create(), new NavigatorMockCreator().create()); component.activate(); component.deactivate(); }); });