Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add the lanelet length test #39

Merged
merged 4 commits into from
Jan 6, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions autoware_lanelet2_extension/test/src/test_utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,15 @@ TEST_F(TestSuite, OverwriteLaneletsCenterline) // NOLINT for gtest
}
}

TEST_F(TestSuite, GetLaneletLength) // NOLINT for gtest
{
double length_2d = lanelet::utils::getLaneletLength2d(road_lanelet);
double length_3d = lanelet::utils::getLaneletLength3d(road_lanelet);

EXPECT_GT(length_2d, 0.0);
EXPECT_GT(length_3d, 0.0);
youtalk marked this conversation as resolved.
Show resolved Hide resolved
}

/*
TEST(Utilities, copyZ) // NOLINT for gtest
{
Expand Down
Loading