| 37 | |
| 38 | |
| 39 | TEST_F(DescriptionHelperTests, correctConnections) |
| 40 | { |
| 41 | auto data = DescriptionEditService::get().createRect(DescriptionEditService::CreateRectParameters().width(10).height(10).center({50.0f, 99.0f})); |
| 42 | _simulationFacade->setSimulationData(data); |
| 43 | auto clusteredData = _simulationFacade->getClusteredSimulationData(); |
| 44 | |
| 45 | DescriptionEditService::get().correctConnections(clusteredData, {100, 100}); |
| 46 | |
| 47 | EXPECT_TRUE(areAngelsCorrect(clusteredData)); |
| 48 | } |
nothing calls this directly
no test coverage detected